Week 5, Jan. 24: EDA4, UN, OECD, readr, readxl, two table verves, modeling
Week 6, Jan. 31: EDA5, Round-up, communication, pdf, Word, PowerPoint
Q. Explain the difference between the directory and the folder of PC briefly.
A. by Bard.
Here’s a brief explanation of the differences between directories and folders on a PC:
Directory (Technical Term):
Fundamental file system structure: It’s the way your computer organizes files and folders in a hierarchical structure.
Can contain files, subdirectories, and even other directories.
Abstract concept: It’s not directly visible in graphical user interfaces (GUIs) like Windows Explorer.
Referred to in command-line interfaces (CLIs) like the Terminal.
Folder (Visual Metaphor):
Graphical representation of a directory: It’s the icon you see in your file explorer.
User-friendly way to interact with directories: It allows you to create, move, rename, and delete them.
May contain files and other folders (subfolders).
Common term in GUIs: It’s what most people interact with on a daily basis.
Key Points:
Directories are the underlying structure, while folders are visual representations.
They’re often used interchangeably in casual conversation.
Technical discussions often use “directory” for accuracy.
Both terms refer to a way to organize files on your computer.
The directory of a folder and a file under Files:
Working directory of your project:
getwd() in Console.Working directory of your RNotebook:
Run getwd() in a code chunk.
The directory your file_name.Rmd and
file_name.nb.html is.
Confirm data folder is in the working directory of
your RNotebook.
getwd()
[1] "/Users/hsuzuki/Documents/_class/gsclasses/intro_R/intro2r/docs/da4r"
Internet link: URL
link of the webpage, other information
download.files(url, destifile = "data/name_of_data.XXX", mode = "wb")
mode = "wb" for digital files
.XXX: extenstions; csv, tsv, xls, xlsx
data folder: downloaded or created data
Keep a record of the data so that you can communicate with others how to obtain the data.
Text file: CSV, etc
Digital file: Excel, etc
Other: archived compressed file, json, etc.
unzip or expand first
may contain many files; data, metadata, readme, etc.
readr: a part of tidyverse
read_csv():
comma-separated values (CSV)
read_tsv():
tab-separated values (TSV)
read_csv2():
semicolon-separated values with , as the decimal
mark
read_delim():
delimited files (CSV and TSV are important special cases)
read_fwf():
fixed-width files
read_table():
whitespace-separated files
read_log():
web log files
例:df_name <- read_csv("data/datafile.csv")
Reference
Data Importing CheatSheet
readxl: a part of tidyverse but you need to load by library(readxl)
df_name <- read_excel("./data/datafile.xlsx")
read_xls and read_xlsx are
available
sheet = 2, or sheet = "name"
file import of RStudio
Reference
Data Importing CheatSheet
text file (csv, etc.)
download.file(url = "URL", destfile = "./data/file_name.csv")
df_name <- read_csv(URL)
write_csv(df_name, "./data/df_name.csv")
df_name <- read_csv("./data/df_name.csv")
digital file
(Excel):download.file(url = "URL", destfile = "./data/file_name.xlsx", mode = "wb")
eg
library(tidyverse)
url_summary <- "https://wir2022.wid.world/www-site/uploads/2022/03/WIR2022TablesFigures-Summary.xlsx"
download.file(url = url_summary, destfile = "./data/WIR2022s.xlsx", mode = "wb")
url_un_migrants <- "https://data.un.org/_Docs/SYB/CSV/SYB66_327_202310_International%20Migrants%20and%20Refugees.csv"
df_un_migrants <- read_csv(url_un_migrants, skip = 1)
New names:Rows: 7238 Columns: 7── Column specification ─────────────────────────────────────────────────────────────────────────
Delimiter: ","
chr (4): ...2, Series, Footnotes, Source
dbl (2): Region/Country/Area, Year
num (1): Value
ℹ Use `spec()` to retrieve the full column specification for this data.
ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
df_un_migrants
df_un_migrants <- read_csv(url_un_migrants, skip = 1)
df_un_migrants
str(df_un_migrants)
spc_tbl_ [7,238 × 7] (S3: spec_tbl_df/tbl_df/tbl/data.frame)
$ Region/Country/Area: num [1:7238] 1 1 1 1 1 1 1 1 1 1 ...
$ ...2 : chr [1:7238] "Total, all countries or areas" "Total, all countries or areas" "Total, all countries or areas" "Total, all countries or areas" ...
$ Year : num [1:7238] 2005 2005 2005 2005 2010 ...
$ Series : chr [1:7238] "International migrant stock: Both sexes (number)" "International migrant stock: Both sexes (% total population)" "International migrant stock: Male (% total Population)" "International migrant stock: Female (% total Population)" ...
$ Value : num [1:7238] 1.91e+08 2.90 3.00 2.90 2.21e+08 ...
$ Footnotes : chr [1:7238] NA NA NA NA ...
$ Source : chr [1:7238] "United Nations Population Division, New York, International migrant stock: The 2020 Revision, last accessed January 2022." "United Nations Population Division, New York, International migrant stock: The 2020 Revision, last accessed January 2022." "United Nations Population Division, New York, International migrant stock: The 2020 Revision, last accessed January 2022." "United Nations Population Division, New York, International migrant stock: The 2020 Revision, last accessed January 2022." ...
- attr(*, "spec")=
.. cols(
.. `Region/Country/Area` = col_double(),
.. ...2 = col_character(),
.. Year = col_double(),
.. Series = col_character(),
.. Value = col_number(),
.. Footnotes = col_character(),
.. Source = col_character()
.. )
- attr(*, "problems")=<externalptr>
Download data
download.file(url_un_migrants, destfile = "data/un_migrants.csv")
trying URL 'https://data.un.org/_Docs/SYB/CSV/SYB66_327_202310_International%20Migrants%20and%20Refugees.csv'
Content type 'application/octet-stream' length 1634042 bytes (1.6 MB)
==================================================
downloaded 1.6 MB
df_un_migrants |> summary()
Region/Country/Area ...2 Year Series Value
Min. : 1.0 Length:7238 Min. :2005 Length:7238 Min. : 0
1st Qu.:178.0 Class :character 1st Qu.:2010 Class :character 1st Qu.: 5
Median :404.0 Mode :character Median :2015 Mode :character Median : 154
Mean :407.1 Mean :2014 Mean : 731059
3rd Qu.:630.0 3rd Qu.:2020 3rd Qu.: 31096
Max. :894.0 Max. :2022 Max. :280598105
Footnotes Source
Length:7238 Length:7238
Class :character Class :character
Mode :character Mode :character
df_un_migrants |> select(Year,Series) |> lapply(unique)
$Year
[1] 2005 2010 2015 2020 2022 2019 2018 2016 2021 2017
$Series
[1] "International migrant stock: Both sexes (number)"
[2] "International migrant stock: Both sexes (% total population)"
[3] "International migrant stock: Male (% total Population)"
[4] "International migrant stock: Female (% total Population)"
[5] "Total refugees and people in refugee-like situations (number)"
[6] "Asylum seekers, including pending cases (number)"
[7] "Other of concern to UNHCR (number)"
[8] "Total population of concern to UNHCR (number)"
df_un_migrants |> distinct(`Region/Country/Area`, ...2)
library(countrycode)
df_un_migrants %>% mutate(iso2c_un = countrycode(`Region/Country/Area`, "un", "iso2c"), .after = ...2)
Warning: There was 1 warning in `mutate()`.
ℹ In argument: `iso2c_un = countrycode(`Region/Country/Area`, "un", "iso2c")`.
Caused by warning:
! Some values were not matched unambiguously: 1, 2, 5, 9, 11, 13, 14, 15, 17, 18, 21, 29, 30, 34, 35, 39, 53, 54, 57, 61, 62, 142, 143, 145, 150, 151, 154, 155, 202, 419, 420, 830
df_un_migrants |> mutate(iso2c_un = countrycode(`Region/Country/Area`, "un", "iso2c"), .after = ...2) |> filter(is.na(iso2c_un)) |> distinct(...2)
Warning: There was 1 warning in `mutate()`.
ℹ In argument: `iso2c_un = countrycode(`Region/Country/Area`, "un", "iso2c")`.
Caused by warning:
! Some values were not matched unambiguously: 1, 2, 5, 9, 11, 13, 14, 15, 17, 18, 21, 29, 30, 34, 35, 39, 53, 54, 57, 61, 62, 142, 143, 145, 150, 151, 154, 155, 202, 419, 420, 830
wdicache <- read_rds("data/wdicache.rds")
wdi_country_extra <- wdicache$country |> select(iso2c, region, income, lending)
df_un_migrants_ext <- df_un_migrants %>%
mutate(iso2c_un = countrycode(`Region/Country/Area`, "un", "iso2c"), .after = ...2) |>
drop_na(iso2c_un) |>
select(Country = ...2, ISO2C = iso2c_un, Year, Series, Value, Footnotes) |>
left_join(wdi_country_extra, by = c("ISO2C" = "iso2c"))
Warning: There was 1 warning in `mutate()`.
ℹ In argument: `iso2c_un = countrycode(`Region/Country/Area`, "un", "iso2c")`.
Caused by warning:
! Some values were not matched unambiguously: 1, 2, 5, 9, 11, 13, 14, 15, 17, 18, 21, 29, 30, 34, 35, 39, 53, 54, 57, 61, 62, 142, 143, 145, 150, 151, 154, 155, 202, 419, 420, 830
df_un_migrants_ext
df_un_migrants_ext$Series |> unique()
[1] "International migrant stock: Both sexes (number)"
[2] "International migrant stock: Both sexes (% total population)"
[3] "International migrant stock: Male (% total Population)"
[4] "International migrant stock: Female (% total Population)"
[5] "Total refugees and people in refugee-like situations (number)"
[6] "Asylum seekers, including pending cases (number)"
[7] "Other of concern to UNHCR (number)"
[8] "Total population of concern to UNHCR (number)"
df_un_migrants_ext_rev <- df_un_migrants_ext |> mutate(Ser = case_when(
Series == "International migrant stock: Both sexes (number)" ~ "migrant",
Series == "International migrant stock: Both sexes (% total population)" ~ "migrant_percent",
Series == "International migrant stock: Male (% total Population)" ~ "migrant_male",
Series == "International migrant stock: Female (% total Population)" ~ "migrant_female",
Series == "Total refugees and people in refugee-like situations (number)" ~ "refugee",
Series == "Asylum seekers, including pending cases (number)" ~ "asylum",
Series == "Other of concern to UNHCR (number)" ~ "other",
Series == "Total population of concern to UNHCR (number)" ~ "concern",
TRUE ~ Series), .before = Series)
df_un_migrants_ext_rev
dput(df_un_migrants_ext_rev)
structure(list(Country = c("Afghanistan", "Afghanistan", "Afghanistan",
"Afghanistan", "Afghanistan", "Afghanistan", "Afghanistan", "Afghanistan",
"Afghanistan", "Afghanistan", "Afghanistan", "Afghanistan", "Afghanistan",
"Afghanistan", "Afghanistan", "Afghanistan", "Afghanistan", "Afghanistan",
"Afghanistan", "Afghanistan", "Afghanistan", "Afghanistan", "Afghanistan",
"Afghanistan", "Afghanistan", "Afghanistan", "Afghanistan", "Afghanistan",
"Afghanistan", "Afghanistan", "Afghanistan", "Afghanistan", "Afghanistan",
"Afghanistan", "Afghanistan", "Afghanistan", "Albania", "Albania",
"Albania", "Albania", "Albania", "Albania", "Albania", "Albania",
"Albania", "Albania", "Albania", "Albania", "Albania", "Albania",
"Albania", "Albania", "Albania", "Albania", "Albania", "Albania",
"Albania", "Albania", "Albania", "Albania", "Albania", "Albania",
"Albania", "Albania", "Albania", "Albania", "Albania", "Albania",
"Albania", "Albania", "Albania", "Algeria", "Algeria", "Algeria",
"Algeria", "Algeria", "Algeria", "Algeria", "Algeria", "Algeria",
"Algeria", "Algeria", "Algeria", "Algeria", "Algeria", "Algeria",
"Algeria", "Algeria", "Algeria", "Algeria", "Algeria", "Algeria",
"Algeria", "Algeria", "Algeria", "Algeria", "Algeria", "Algeria",
"Algeria", "Algeria", "Algeria", "Algeria", "American Samoa",
"American Samoa", "American Samoa", "American Samoa", "American Samoa",
"American Samoa", "American Samoa", "American Samoa", "Andorra",
"Andorra", "Andorra", "Andorra", "Andorra", "Andorra", "Andorra",
"Andorra", "Angola", "Angola", "Angola", "Angola", "Angola",
"Angola", "Angola", "Angola", "Angola", "Angola", "Angola", "Angola",
"Angola", "Angola", "Angola", "Angola", "Angola", "Angola", "Angola",
"Angola", "Angola", "Angola", "Angola", "Angola", "Angola", "Angola",
"Angola", "Angola", "Angola", "Angola", "Angola", "Angola", "Angola",
"Angola", "Angola", "Anguilla", "Anguilla", "Anguilla", "Anguilla",
"Anguilla", "Anguilla", "Anguilla", "Anguilla", "Anguilla", "Anguilla",
"Anguilla", "Anguilla", "Anguilla", "Anguilla", "Antigua and Barbuda",
"Antigua and Barbuda", "Antigua and Barbuda", "Antigua and Barbuda",
"Antigua and Barbuda", "Antigua and Barbuda", "Antigua and Barbuda",
"Antigua and Barbuda", "Antigua and Barbuda", "Antigua and Barbuda",
"Antigua and Barbuda", "Antigua and Barbuda", "Antigua and Barbuda",
"Antigua and Barbuda", "Antigua and Barbuda", "Antigua and Barbuda",
"Antigua and Barbuda", "Antigua and Barbuda", "Antigua and Barbuda",
"Antigua and Barbuda", "Antigua and Barbuda", "Antigua and Barbuda",
"Antigua and Barbuda", "Argentina", "Argentina", "Argentina",
"Argentina", "Argentina", "Argentina", "Argentina", "Argentina",
"Argentina", "Argentina", "Argentina", "Argentina", "Argentina",
"Argentina", "Argentina", "Argentina", "Argentina", "Argentina",
"Argentina", "Argentina", "Argentina", "Argentina", "Argentina",
"Argentina", "Argentina", "Argentina", "Argentina", "Argentina",
"Argentina", "Argentina", "Argentina", "Argentina", "Argentina",
"Argentina", "Armenia", "Armenia", "Armenia", "Armenia", "Armenia",
"Armenia", "Armenia", "Armenia", "Armenia", "Armenia", "Armenia",
"Armenia", "Armenia", "Armenia", "Armenia", "Armenia", "Armenia",
"Armenia", "Armenia", "Armenia", "Armenia", "Armenia", "Armenia",
"Armenia", "Armenia", "Armenia", "Armenia", "Armenia", "Armenia",
"Armenia", "Armenia", "Armenia", "Armenia", "Armenia", "Armenia",
"Aruba", "Aruba", "Aruba", "Aruba", "Aruba", "Aruba", "Aruba",
"Aruba", "Aruba", "Aruba", "Aruba", "Aruba", "Aruba", "Aruba",
"Aruba", "Aruba", "Aruba", "Aruba", "Aruba", "Aruba", "Aruba",
"Aruba", "Aruba", "Aruba", "Aruba", "Aruba", "Aruba", "Aruba",
"Aruba", "Aruba", "Australia", "Australia", "Australia", "Australia",
"Australia", "Australia", "Australia", "Australia", "Australia",
"Australia", "Australia", "Australia", "Australia", "Australia",
"Australia", "Australia", "Australia", "Australia", "Australia",
"Australia", "Australia", "Australia", "Australia", "Australia",
"Australia", "Australia", "Australia", "Australia", "Australia",
"Australia", "Australia", "Australia", "Australia", "Australia",
"Austria", "Austria", "Austria", "Austria", "Austria", "Austria",
"Austria", "Austria", "Austria", "Austria", "Austria", "Austria",
"Austria", "Austria", "Austria", "Austria", "Austria", "Austria",
"Austria", "Austria", "Austria", "Austria", "Austria", "Austria",
"Austria", "Austria", "Austria", "Austria", "Austria", "Austria",
"Austria", "Austria", "Austria", "Austria", "Austria", "Austria",
"Azerbaijan", "Azerbaijan", "Azerbaijan", "Azerbaijan", "Azerbaijan",
"Azerbaijan", "Azerbaijan", "Azerbaijan", "Azerbaijan", "Azerbaijan",
"Azerbaijan", "Azerbaijan", "Azerbaijan", "Azerbaijan", "Azerbaijan",
"Azerbaijan", "Azerbaijan", "Azerbaijan", "Azerbaijan", "Azerbaijan",
"Azerbaijan", "Azerbaijan", "Azerbaijan", "Azerbaijan", "Azerbaijan",
"Azerbaijan", "Azerbaijan", "Azerbaijan", "Azerbaijan", "Azerbaijan",
"Azerbaijan", "Azerbaijan", "Azerbaijan", "Azerbaijan", "Azerbaijan",
"Azerbaijan", "Bahamas", "Bahamas", "Bahamas", "Bahamas", "Bahamas",
"Bahamas", "Bahamas", "Bahamas", "Bahamas", "Bahamas", "Bahamas",
"Bahamas", "Bahamas", "Bahamas", "Bahamas", "Bahamas", "Bahamas",
"Bahamas", "Bahamas", "Bahamas", "Bahamas", "Bahamas", "Bahamas",
"Bahamas", "Bahamas", "Bahamas", "Bahamas", "Bahamas", "Bahamas",
"Bahamas", "Bahamas", "Bahamas", "Bahamas", "Bahamas", "Bahamas",
"Bahrain", "Bahrain", "Bahrain", "Bahrain", "Bahrain", "Bahrain",
"Bahrain", "Bahrain", "Bahrain", "Bahrain", "Bahrain", "Bahrain",
"Bahrain", "Bahrain", "Bahrain", "Bahrain", "Bahrain", "Bahrain",
"Bahrain", "Bahrain", "Bahrain", "Bahrain", "Bahrain", "Bahrain",
"Bahrain", "Bahrain", "Bahrain", "Bahrain", "Bahrain", "Bahrain",
"Bangladesh", "Bangladesh", "Bangladesh", "Bangladesh", "Bangladesh",
"Bangladesh", "Bangladesh", "Bangladesh", "Bangladesh", "Bangladesh",
"Bangladesh", "Bangladesh", "Bangladesh", "Bangladesh", "Bangladesh",
"Bangladesh", "Bangladesh", "Bangladesh", "Bangladesh", "Bangladesh",
"Bangladesh", "Bangladesh", "Bangladesh", "Bangladesh", "Bangladesh",
"Bangladesh", "Bangladesh", "Bangladesh", "Bangladesh", "Bangladesh",
"Bangladesh", "Bangladesh", "Barbados", "Barbados", "Barbados",
"Barbados", "Barbados", "Barbados", "Barbados", "Barbados", "Barbados",
"Barbados", "Barbados", "Barbados", "Barbados", "Barbados", "Barbados",
"Barbados", "Barbados", "Barbados", "Barbados", "Barbados", "Barbados",
"Barbados", "Barbados", "Barbados", "Barbados", "Belarus", "Belarus",
"Belarus", "Belarus", "Belarus", "Belarus", "Belarus", "Belarus",
"Belarus", "Belarus", "Belarus", "Belarus", "Belarus", "Belarus",
"Belarus", "Belarus", "Belarus", "Belarus", "Belarus", "Belarus",
"Belarus", "Belarus", "Belarus", "Belarus", "Belarus", "Belarus",
"Belarus", "Belarus", "Belarus", "Belarus", "Belarus", "Belarus",
"Belarus", "Belarus", "Belarus", "Belarus", "Belgium", "Belgium",
"Belgium", "Belgium", "Belgium", "Belgium", "Belgium", "Belgium",
"Belgium", "Belgium", "Belgium", "Belgium", "Belgium", "Belgium",
"Belgium", "Belgium", "Belgium", "Belgium", "Belgium", "Belgium",
"Belgium", "Belgium", "Belgium", "Belgium", "Belgium", "Belgium",
"Belgium", "Belgium", "Belgium", "Belgium", "Belgium", "Belgium",
"Belgium", "Belgium", "Belgium", "Belgium", "Belize", "Belize",
"Belize", "Belize", "Belize", "Belize", "Belize", "Belize", "Belize",
"Belize", "Belize", "Belize", "Belize", "Belize", "Belize", "Belize",
"Belize", "Belize", "Belize", "Belize", "Belize", "Belize", "Belize",
"Belize", "Belize", "Belize", "Belize", "Belize", "Belize", "Belize",
"Belize", "Belize", "Belize", "Benin", "Benin", "Benin", "Benin",
"Benin", "Benin", "Benin", "Benin", "Benin", "Benin", "Benin",
"Benin", "Benin", "Benin", "Benin", "Benin", "Benin", "Benin",
"Benin", "Benin", "Benin", "Benin", "Benin", "Benin", "Benin",
"Benin", "Benin", "Benin", "Benin", "Benin", "Benin", "Benin",
"Benin", "Bermuda", "Bermuda", "Bermuda", "Bermuda", "Bermuda",
"Bermuda", "Bermuda", "Bermuda", "Bhutan", "Bhutan", "Bhutan",
"Bhutan", "Bhutan", "Bhutan", "Bhutan", "Bhutan", "Bhutan", "Bhutan",
"Bhutan", "Bhutan", "Bhutan", "Bhutan", "Bhutan", "Bhutan", "Bolivia (Plurin. State of)",
"Bolivia (Plurin. State of)", "Bolivia (Plurin. State of)", "Bolivia (Plurin. State of)",
"Bolivia (Plurin. State of)", "Bolivia (Plurin. State of)", "Bolivia (Plurin. State of)",
"Bolivia (Plurin. State of)", "Bolivia (Plurin. State of)", "Bolivia (Plurin. State of)",
"Bolivia (Plurin. State of)", "Bolivia (Plurin. State of)", "Bolivia (Plurin. State of)",
"Bolivia (Plurin. State of)", "Bolivia (Plurin. State of)", "Bolivia (Plurin. State of)",
"Bolivia (Plurin. State of)", "Bolivia (Plurin. State of)", "Bolivia (Plurin. State of)",
"Bolivia (Plurin. State of)", "Bolivia (Plurin. State of)", "Bolivia (Plurin. State of)",
"Bolivia (Plurin. State of)", "Bolivia (Plurin. State of)", "Bolivia (Plurin. State of)",
"Bolivia (Plurin. State of)", "Bolivia (Plurin. State of)", "Bolivia (Plurin. State of)",
"Bolivia (Plurin. State of)", "Bolivia (Plurin. State of)", "Bolivia (Plurin. State of)",
"Bolivia (Plurin. State of)", "Bolivia (Plurin. State of)", "Bolivia (Plurin. State of)",
"Bolivia (Plurin. State of)", "Bonaire, St. Eustatius & Saba",
"Bonaire, St. Eustatius & Saba", "Bonaire, St. Eustatius & Saba",
"Bonaire, St. Eustatius & Saba", "Bonaire, St. Eustatius & Saba",
"Bonaire, St. Eustatius & Saba", "Bonaire, St. Eustatius & Saba",
"Bonaire, St. Eustatius & Saba", "Bonaire, St. Eustatius & Saba",
"Bonaire, St. Eustatius & Saba", "Bosnia and Herzegovina", "Bosnia and Herzegovina",
"Bosnia and Herzegovina", "Bosnia and Herzegovina", "Bosnia and Herzegovina",
"Bosnia and Herzegovina", "Bosnia and Herzegovina", "Bosnia and Herzegovina",
"Bosnia and Herzegovina", "Bosnia and Herzegovina", "Bosnia and Herzegovina",
"Bosnia and Herzegovina", "Bosnia and Herzegovina", "Bosnia and Herzegovina",
"Bosnia and Herzegovina", "Bosnia and Herzegovina", "Bosnia and Herzegovina",
"Bosnia and Herzegovina", "Bosnia and Herzegovina", "Bosnia and Herzegovina",
"Bosnia and Herzegovina", "Bosnia and Herzegovina", "Bosnia and Herzegovina",
"Bosnia and Herzegovina", "Bosnia and Herzegovina", "Bosnia and Herzegovina",
"Bosnia and Herzegovina", "Bosnia and Herzegovina", "Bosnia and Herzegovina",
"Bosnia and Herzegovina", "Bosnia and Herzegovina", "Bosnia and Herzegovina",
"Bosnia and Herzegovina", "Bosnia and Herzegovina", "Bosnia and Herzegovina",
"Bosnia and Herzegovina", "Botswana", "Botswana", "Botswana",
"Botswana", "Botswana", "Botswana", "Botswana", "Botswana", "Botswana",
"Botswana", "Botswana", "Botswana", "Botswana", "Botswana", "Botswana",
"Botswana", "Botswana", "Botswana", "Botswana", "Botswana", "Botswana",
"Botswana", "Botswana", "Botswana", "Botswana", "Botswana", "Botswana",
"Botswana", "Botswana", "Botswana", "Botswana", "Botswana", "Botswana",
"Botswana", "Botswana", "Brazil", "Brazil", "Brazil", "Brazil",
"Brazil", "Brazil", "Brazil", "Brazil", "Brazil", "Brazil", "Brazil",
"Brazil", "Brazil", "Brazil", "Brazil", "Brazil", "Brazil", "Brazil",
"Brazil", "Brazil", "Brazil", "Brazil", "Brazil", "Brazil", "Brazil",
"Brazil", "Brazil", "Brazil", "Brazil", "Brazil", "Brazil", "Brazil",
"Brazil", "Brazil", "Brazil", "Brazil", "British Virgin Islands",
"British Virgin Islands", "British Virgin Islands", "British Virgin Islands",
"British Virgin Islands", "British Virgin Islands", "British Virgin Islands",
"British Virgin Islands", "British Virgin Islands", "British Virgin Islands",
"British Virgin Islands", "British Virgin Islands", "British Virgin Islands",
"British Virgin Islands", "British Virgin Islands", "British Virgin Islands",
"British Virgin Islands", "British Virgin Islands", "Brunei Darussalam",
"Brunei Darussalam", "Brunei Darussalam", "Brunei Darussalam",
"Brunei Darussalam", "Brunei Darussalam", "Brunei Darussalam",
"Brunei Darussalam", "Brunei Darussalam", "Brunei Darussalam",
"Brunei Darussalam", "Brunei Darussalam", "Brunei Darussalam",
"Brunei Darussalam", "Brunei Darussalam", "Brunei Darussalam",
"Brunei Darussalam", "Brunei Darussalam", "Brunei Darussalam",
"Brunei Darussalam", "Brunei Darussalam", "Brunei Darussalam",
"Brunei Darussalam", "Brunei Darussalam", "Bulgaria", "Bulgaria",
"Bulgaria", "Bulgaria", "Bulgaria", "Bulgaria", "Bulgaria", "Bulgaria",
"Bulgaria", "Bulgaria", "Bulgaria", "Bulgaria", "Bulgaria", "Bulgaria",
"Bulgaria", "Bulgaria", "Bulgaria", "Bulgaria", "Bulgaria", "Bulgaria",
"Bulgaria", "Bulgaria", "Bulgaria", "Bulgaria", "Bulgaria", "Bulgaria",
"Bulgaria", "Bulgaria", "Bulgaria", "Bulgaria", "Bulgaria", "Bulgaria",
"Bulgaria", "Bulgaria", "Burkina Faso", "Burkina Faso", "Burkina Faso",
"Burkina Faso", "Burkina Faso", "Burkina Faso", "Burkina Faso",
"Burkina Faso", "Burkina Faso", "Burkina Faso", "Burkina Faso",
"Burkina Faso", "Burkina Faso", "Burkina Faso", "Burkina Faso",
"Burkina Faso", "Burkina Faso", "Burkina Faso", "Burkina Faso",
"Burkina Faso", "Burkina Faso", "Burkina Faso", "Burkina Faso",
"Burkina Faso", "Burkina Faso", "Burkina Faso", "Burkina Faso",
"Burkina Faso", "Burkina Faso", "Burkina Faso", "Burkina Faso",
"Burkina Faso", "Burkina Faso", "Burkina Faso", "Burkina Faso",
"Burundi", "Burundi", "Burundi", "Burundi", "Burundi", "Burundi",
"Burundi", "Burundi", "Burundi", "Burundi", "Burundi", "Burundi",
"Burundi", "Burundi", "Burundi", "Burundi", "Burundi", "Burundi",
"Burundi", "Burundi", "Burundi", "Burundi", "Burundi", "Burundi",
"Burundi", "Burundi", "Burundi", "Burundi", "Burundi", "Burundi",
"Burundi", "Burundi", "Burundi", "Burundi", "Burundi", "Burundi",
"Cabo Verde", "Cabo Verde", "Cabo Verde", "Cabo Verde", "Cabo Verde",
"Cabo Verde", "Cabo Verde", "Cabo Verde", "Cabo Verde", "Cabo Verde",
"Cabo Verde", "Cabo Verde", "Cabo Verde", "Cabo Verde", "Cabo Verde",
"Cabo Verde", "Cabo Verde", "Cabo Verde", "Cabo Verde", "Cabo Verde",
"Cabo Verde", "Cabo Verde", "Cabo Verde", "Cabo Verde", "Cambodia",
"Cambodia", "Cambodia", "Cambodia", "Cambodia", "Cambodia", "Cambodia",
"Cambodia", "Cambodia", "Cambodia", "Cambodia", "Cambodia", "Cambodia",
"Cambodia", "Cambodia", "Cambodia", "Cambodia", "Cambodia", "Cambodia",
"Cambodia", "Cambodia", "Cambodia", "Cambodia", "Cambodia", "Cambodia",
"Cambodia", "Cambodia", "Cambodia", "Cambodia", "Cambodia", "Cambodia",
"Cambodia", "Cambodia", "Cambodia", "Cameroon", "Cameroon", "Cameroon",
"Cameroon", "Cameroon", "Cameroon", "Cameroon", "Cameroon", "Cameroon",
"Cameroon", "Cameroon", "Cameroon", "Cameroon", "Cameroon", "Cameroon",
"Cameroon", "Cameroon", "Cameroon", "Cameroon", "Cameroon", "Cameroon",
"Cameroon", "Cameroon", "Cameroon", "Cameroon", "Cameroon", "Cameroon",
"Cameroon", "Cameroon", "Cameroon", "Cameroon", "Cameroon", "Cameroon",
"Cameroon", "Cameroon", "Cameroon", "Canada", "Canada", "Canada",
"Canada", "Canada", "Canada", "Canada", "Canada", "Canada", "Canada",
"Canada", "Canada", "Canada", "Canada", "Canada", "Canada", "Canada",
"Canada", "Canada", "Canada", "Canada", "Canada", "Canada", "Canada",
"Canada", "Canada", "Canada", "Canada", "Canada", "Canada", "Canada",
"Canada", "Canada", "Canada", "Canada", "Cayman Islands", "Cayman Islands",
"Cayman Islands", "Cayman Islands", "Cayman Islands", "Cayman Islands",
"Cayman Islands", "Cayman Islands", "Cayman Islands", "Cayman Islands",
"Cayman Islands", "Cayman Islands", "Cayman Islands", "Cayman Islands",
"Cayman Islands", "Cayman Islands", "Cayman Islands", "Cayman Islands",
"Cayman Islands", "Cayman Islands", "Cayman Islands", "Cayman Islands",
"Cayman Islands", "Central African Republic", "Central African Republic",
"Central African Republic", "Central African Republic", "Central African Republic",
"Central African Republic", "Central African Republic", "Central African Republic",
"Central African Republic", "Central African Republic", "Central African Republic",
"Central African Republic", "Central African Republic", "Central African Republic",
"Central African Republic", "Central African Republic", "Central African Republic",
"Central African Republic", "Central African Republic", "Central African Republic",
"Central African Republic", "Central African Republic", "Central African Republic",
"Central African Republic", "Central African Republic", "Central African Republic",
"Central African Republic", "Central African Republic", "Central African Republic",
"Central African Republic", "Central African Republic", "Central African Republic",
"Central African Republic", "Central African Republic", "Central African Republic",
"Central African Republic", "Chad", "Chad", "Chad", "Chad", "Chad",
"Chad", "Chad", "Chad", "Chad", "Chad", "Chad", "Chad", "Chad",
"Chad", "Chad", "Chad", "Chad", "Chad", "Chad", "Chad", "Chad",
"Chad", "Chad", "Chad", "Chad", "Chad", "Chad", "Chad", "Chad",
"Chad", "Chad", "Chad", "Chad", "Chad", "Chad", "Chile", "Chile",
"Chile", "Chile", "Chile", "Chile", "Chile", "Chile", "Chile",
"Chile", "Chile", "Chile", "Chile", "Chile", "Chile", "Chile",
"Chile", "Chile", "Chile", "Chile", "Chile", "Chile", "Chile",
"Chile", "Chile", "Chile", "Chile", "Chile", "Chile", "Chile",
"Chile", "Chile", "Chile", "China", "China", "China", "China",
"China", "China", "China", "China", "China", "China", "China",
"China", "China", "China", "China", "China", "China", "China",
"China", "China", "China", "China", "China", "China", "China",
"China", "China", "China", "China", "China", "China", "China",
"China, Hong Kong SAR", "China, Hong Kong SAR", "China, Hong Kong SAR",
"China, Hong Kong SAR", "China, Hong Kong SAR", "China, Hong Kong SAR",
"China, Hong Kong SAR", "China, Hong Kong SAR", "China, Hong Kong SAR",
"China, Hong Kong SAR", "China, Hong Kong SAR", "China, Hong Kong SAR",
"China, Hong Kong SAR", "China, Hong Kong SAR", "China, Hong Kong SAR",
"China, Hong Kong SAR", "China, Hong Kong SAR", "China, Hong Kong SAR",
"China, Hong Kong SAR", "China, Hong Kong SAR", "China, Hong Kong SAR",
"China, Hong Kong SAR", "China, Hong Kong SAR", "China, Hong Kong SAR",
"China, Hong Kong SAR", "China, Hong Kong SAR", "China, Hong Kong SAR",
"China, Hong Kong SAR", "China, Hong Kong SAR", "China, Hong Kong SAR",
"China, Hong Kong SAR", "China, Hong Kong SAR", "China, Hong Kong SAR",
"China, Hong Kong SAR", "China, Hong Kong SAR", "China, Hong Kong SAR",
"China, Hong Kong SAR", "China, Hong Kong SAR", "China, Macao SAR",
"China, Macao SAR", "China, Macao SAR", "China, Macao SAR", "China, Macao SAR",
"China, Macao SAR", "China, Macao SAR", "China, Macao SAR", "China, Macao SAR",
"China, Macao SAR", "China, Macao SAR", "China, Macao SAR", "China, Macao SAR",
"China, Macao SAR", "China, Macao SAR", "China, Macao SAR", "China, Macao SAR",
"China, Macao SAR", "China, Macao SAR", "China, Macao SAR", "China, Macao SAR",
"China, Macao SAR", "China, Macao SAR", "Colombia", "Colombia",
"Colombia", "Colombia", "Colombia", "Colombia", "Colombia", "Colombia",
"Colombia", "Colombia", "Colombia", "Colombia", "Colombia", "Colombia",
"Colombia", "Colombia", "Colombia", "Colombia", "Colombia", "Colombia",
"Colombia", "Colombia", "Colombia", "Colombia", "Colombia", "Colombia",
"Colombia", "Colombia", "Colombia", "Colombia", "Colombia", "Colombia",
"Colombia", "Colombia", "Colombia", "Colombia", "Comoros", "Comoros",
"Comoros", "Comoros", "Comoros", "Comoros", "Comoros", "Comoros",
"Comoros", "Comoros", "Comoros", "Comoros", "Comoros", "Comoros",
"Comoros", "Comoros", "Comoros", "Comoros", "Comoros", "Comoros",
"Congo", "Congo", "Congo", "Congo", "Congo", "Congo", "Congo",
"Congo", "Congo", "Congo", "Congo", "Congo", "Congo", "Congo",
"Congo", "Congo", "Congo", "Congo", "Congo", "Congo", "Congo",
"Congo", "Congo", "Congo", "Congo", "Congo", "Congo", "Congo",
"Congo", "Congo", "Congo", "Congo", "Congo", "Congo", "Congo",
"Congo", "Cook Islands", "Cook Islands", "Cook Islands", "Cook Islands",
"Cook Islands", "Cook Islands", "Cook Islands", "Cook Islands",
"Costa Rica", "Costa Rica", "Costa Rica", "Costa Rica", "Costa Rica",
"Costa Rica", "Costa Rica", "Costa Rica", "Costa Rica", "Costa Rica",
"Costa Rica", "Costa Rica", "Costa Rica", "Costa Rica", "Costa Rica",
"Costa Rica", "Costa Rica", "Costa Rica", "Costa Rica", "Costa Rica",
"Costa Rica", "Costa Rica", "Costa Rica", "Costa Rica", "Costa Rica",
"Costa Rica", "Costa Rica", "Costa Rica", "Costa Rica", "Costa Rica",
"Costa Rica", "Costa Rica", "Costa Rica", "Costa Rica", "Costa Rica",
"C\xf4te d\x92Ivoire", "C\xf4te d\x92Ivoire", "C\xf4te d\x92Ivoire",
"C\xf4te d\x92Ivoire", "C\xf4te d\x92Ivoire", "C\xf4te d\x92Ivoire",
"C\xf4te d\x92Ivoire", "C\xf4te d\x92Ivoire", "C\xf4te d\x92Ivoire",
"C\xf4te d\x92Ivoire", "C\xf4te d\x92Ivoire", "C\xf4te d\x92Ivoire",
"C\xf4te d\x92Ivoire", "C\xf4te d\x92Ivoire", "C\xf4te d\x92Ivoire",
"C\xf4te d\x92Ivoire", "C\xf4te d\x92Ivoire", "C\xf4te d\x92Ivoire",
"C\xf4te d\x92Ivoire", "C\xf4te d\x92Ivoire", "C\xf4te d\x92Ivoire",
"C\xf4te d\x92Ivoire", "C\xf4te d\x92Ivoire", "C\xf4te d\x92Ivoire",
"C\xf4te d\x92Ivoire", "C\xf4te d\x92Ivoire", "C\xf4te d\x92Ivoire",
"C\xf4te d\x92Ivoire", "C\xf4te d\x92Ivoire", "C\xf4te d\x92Ivoire",
"C\xf4te d\x92Ivoire", "C\xf4te d\x92Ivoire", "C\xf4te d\x92Ivoire",
"C\xf4te d\x92Ivoire", "C\xf4te d\x92Ivoire", "C\xf4te d\x92Ivoire",
"Croatia", "Croatia", "Croatia", "Croatia", "Croatia", "Croatia",
"Croatia", "Croatia", "Croatia", "Croatia", "Croatia", "Croatia",
"Croatia", "Croatia", "Croatia", "Croatia", "Croatia", "Croatia",
"Croatia", "Croatia", "Croatia", "Croatia", "Croatia", "Croatia",
"Croatia", "Croatia", "Croatia", "Croatia", "Croatia", "Croatia",
"Croatia", "Croatia", "Croatia", "Croatia", "Croatia", "Croatia",
"Cuba", "Cuba", "Cuba", "Cuba", "Cuba", "Cuba", "Cuba", "Cuba",
"Cuba", "Cuba", "Cuba", "Cuba", "Cuba", "Cuba", "Cuba", "Cuba",
"Cuba", "Cuba", "Cuba", "Cuba", "Cuba", "Cuba", "Cuba", "Cuba",
"Cuba", "Cuba", "Cuba", "Cuba", "Cuba", "Cuba", "Cuba", "Cuba",
"Cuba", "Cura\xe7ao", "Cura\xe7ao", "Cura\xe7ao", "Cura\xe7ao",
"Cura\xe7ao", "Cura\xe7ao", "Cura\xe7ao", "Cura\xe7ao", "Cura\xe7ao",
"Cura\xe7ao", "Cura\xe7ao", "Cura\xe7ao", "Cura\xe7ao", "Cura\xe7ao",
"Cura\xe7ao", "Cura\xe7ao", "Cura\xe7ao", "Cura\xe7ao", "Cura\xe7ao",
"Cura\xe7ao", "Cura\xe7ao", "Cura\xe7ao", "Cura\xe7ao", "Cura\xe7ao",
"Cura\xe7ao", "Cura\xe7ao", "Cura\xe7ao", "Cura\xe7ao", "Cyprus",
"Cyprus", "Cyprus", "Cyprus", "Cyprus", "Cyprus", "Cyprus", "Cyprus",
"Cyprus", "Cyprus", "Cyprus", "Cyprus", "Cyprus", "Cyprus", "Cyprus",
"Cyprus", "Cyprus", "Cyprus", "Cyprus", "Cyprus", "Cyprus", "Cyprus",
"Cyprus", "Cyprus", "Cyprus", "Cyprus", "Cyprus", "Cyprus", "Cyprus",
"Cyprus", "Cyprus", "Cyprus", "Cyprus", "Cyprus", "Cyprus", "Czechia",
"Czechia", "Czechia", "Czechia", "Czechia", "Czechia", "Czechia",
"Czechia", "Czechia", "Czechia", "Czechia", "Czechia", "Czechia",
"Czechia", "Czechia", "Czechia", "Czechia", "Czechia", "Czechia",
"Czechia", "Czechia", "Czechia", "Czechia", "Czechia", "Czechia",
"Czechia", "Czechia", "Czechia", "Czechia", "Czechia", "Czechia",
"Czechia", "Czechia", "Czechia", "Czechia", "Dem. People's Rep. Korea",
"Dem. People's Rep. Korea", "Dem. People's Rep. Korea", "Dem. People's Rep. Korea",
"Dem. People's Rep. Korea", "Dem. People's Rep. Korea", "Dem. People's Rep. Korea",
"Dem. People's Rep. Korea", "Dem. People's Rep. Korea", "Dem. People's Rep. Korea",
"Dem. People's Rep. Korea", "Dem. People's Rep. Korea", "Dem. People's Rep. Korea",
"Dem. People's Rep. Korea", "Dem. People's Rep. Korea", "Dem. People's Rep. Korea",
"Dem. Rep. of the Congo", "Dem. Rep. of the Congo", "Dem. Rep. of the Congo",
"Dem. Rep. of the Congo", "Dem. Rep. of the Congo", "Dem. Rep. of the Congo",
"Dem. Rep. of the Congo", "Dem. Rep. of the Congo", "Dem. Rep. of the Congo",
"Dem. Rep. of the Congo", "Dem. Rep. of the Congo", "Dem. Rep. of the Congo",
"Dem. Rep. of the Congo", "Dem. Rep. of the Congo", "Dem. Rep. of the Congo",
"Dem. Rep. of the Congo", "Dem. Rep. of the Congo", "Dem. Rep. of the Congo",
"Dem. Rep. of the Congo", "Dem. Rep. of the Congo", "Dem. Rep. of the Congo",
"Dem. Rep. of the Congo", "Dem. Rep. of the Congo", "Dem. Rep. of the Congo",
"Dem. Rep. of the Congo", "Dem. Rep. of the Congo", "Dem. Rep. of the Congo",
"Dem. Rep. of the Congo", "Dem. Rep. of the Congo", "Dem. Rep. of the Congo",
"Dem. Rep. of the Congo", "Dem. Rep. of the Congo", "Dem. Rep. of the Congo",
"Dem. Rep. of the Congo", "Dem. Rep. of the Congo", "Dem. Rep. of the Congo",
"Denmark", "Denmark", "Denmark", "Denmark", "Denmark", "Denmark",
"Denmark", "Denmark", "Denmark", "Denmark", "Denmark", "Denmark",
"Denmark", "Denmark", "Denmark", "Denmark", "Denmark", "Denmark",
"Denmark", "Denmark", "Denmark", "Denmark", "Denmark", "Denmark",
"Denmark", "Denmark", "Denmark", "Denmark", "Denmark", "Denmark",
"Denmark", "Denmark", "Denmark", "Denmark", "Denmark", "Denmark",
"Djibouti", "Djibouti", "Djibouti", "Djibouti", "Djibouti", "Djibouti",
"Djibouti", "Djibouti", "Djibouti", "Djibouti", "Djibouti", "Djibouti",
"Djibouti", "Djibouti", "Djibouti", "Djibouti", "Djibouti", "Djibouti",
"Djibouti", "Djibouti", "Djibouti", "Djibouti", "Djibouti", "Djibouti",
"Djibouti", "Djibouti", "Djibouti", "Djibouti", "Djibouti", "Djibouti",
"Djibouti", "Djibouti", "Djibouti", "Djibouti", "Djibouti", "Djibouti",
"Djibouti", "Dominica", "Dominica", "Dominica", "Dominica", "Dominica",
"Dominica", "Dominica", "Dominica", "Dominica", "Dominica", "Dominica",
"Dominican Republic", "Dominican Republic", "Dominican Republic",
"Dominican Republic", "Dominican Republic", "Dominican Republic",
"Dominican Republic", "Dominican Republic", "Dominican Republic",
"Dominican Republic", "Dominican Republic", "Dominican Republic",
"Dominican Republic", "Dominican Republic", "Dominican Republic",
"Dominican Republic", "Dominican Republic", "Dominican Republic",
"Dominican Republic", "Dominican Republic", "Dominican Republic",
"Dominican Republic", "Dominican Republic", "Dominican Republic",
"Dominican Republic", "Dominican Republic", "Dominican Republic",
"Dominican Republic", "Dominican Republic", "Dominican Republic",
"Dominican Republic", "Ecuador", "Ecuador", "Ecuador", "Ecuador",
"Ecuador", "Ecuador", "Ecuador", "Ecuador", "Ecuador", "Ecuador",
"Ecuador", "Ecuador", "Ecuador", "Ecuador", "Ecuador", "Ecuador",
"Ecuador", "Ecuador", "Ecuador", "Ecuador", "Ecuador", "Ecuador",
"Ecuador", "Ecuador", "Ecuador", "Ecuador", "Ecuador", "Ecuador",
"Ecuador", "Ecuador", "Ecuador", "Ecuador", "Ecuador", "Ecuador",
"Egypt", "Egypt", "Egypt", "Egypt", "Egypt", "Egypt", "Egypt",
"Egypt", "Egypt", "Egypt", "Egypt", "Egypt", "Egypt", "Egypt",
"Egypt", "Egypt", "Egypt", "Egypt", "Egypt", "Egypt", "Egypt",
"Egypt", "Egypt", "Egypt", "Egypt", "Egypt", "Egypt", "Egypt",
"Egypt", "Egypt", "Egypt", "Egypt", "Egypt", "Egypt", "Egypt",
"El Salvador", "El Salvador", "El Salvador", "El Salvador", "El Salvador",
"El Salvador", "El Salvador", "El Salvador", "El Salvador", "El Salvador",
"El Salvador", "El Salvador", "El Salvador", "El Salvador", "El Salvador",
"El Salvador", "El Salvador", "El Salvador", "El Salvador", "El Salvador",
"El Salvador", "El Salvador", "El Salvador", "El Salvador", "El Salvador",
"El Salvador", "El Salvador", "El Salvador", "El Salvador", "El Salvador",
"El Salvador", "El Salvador", "El Salvador", "Equatorial Guinea",
"Equatorial Guinea", "Equatorial Guinea", "Equatorial Guinea",
"Equatorial Guinea", "Equatorial Guinea", "Equatorial Guinea",
"Equatorial Guinea", "Equatorial Guinea", "Equatorial Guinea",
"Equatorial Guinea", "Equatorial Guinea", "Equatorial Guinea",
"Equatorial Guinea", "Equatorial Guinea", "Equatorial Guinea",
"Eritrea", "Eritrea", "Eritrea", "Eritrea", "Eritrea", "Eritrea",
"Eritrea", "Eritrea", "Eritrea", "Eritrea", "Eritrea", "Eritrea",
"Eritrea", "Eritrea", "Eritrea", "Eritrea", "Eritrea", "Eritrea",
"Eritrea", "Eritrea", "Eritrea", "Eritrea", "Eritrea", "Eritrea",
"Eritrea", "Eritrea", "Eritrea", "Eritrea", "Eritrea", "Eritrea",
"Eritrea", "Eritrea", "Eritrea", "Eritrea", "Eritrea", "Eritrea",
"Eritrea", "Eritrea", "Estonia", "Estonia", "Estonia", "Estonia",
"Estonia", "Estonia", "Estonia", "Estonia", "Estonia", "Estonia",
"Estonia", "Estonia", "Estonia", "Estonia", "Estonia", "Estonia",
"Estonia", "Estonia", "Estonia", "Estonia", "Estonia", "Estonia",
"Estonia", "Estonia", "Estonia", "Estonia", "Estonia", "Estonia",
"Estonia", "Estonia", "Estonia", "Estonia", "Estonia", "Estonia",
"Estonia", "Estonia", "Eswatini", "Eswatini", "Eswatini", "Eswatini",
"Eswatini", "Eswatini", "Eswatini", "Eswatini", "Eswatini", "Eswatini",
"Eswatini", "Eswatini", "Eswatini", "Eswatini", "Eswatini", "Eswatini",
"Eswatini", "Eswatini", "Eswatini", "Eswatini", "Eswatini", "Eswatini",
"Eswatini", "Eswatini", "Eswatini", "Eswatini", "Eswatini", "Eswatini",
"Eswatini", "Eswatini", "Eswatini", "Eswatini", "Ethiopia", "Ethiopia",
"Ethiopia", "Ethiopia", "Ethiopia", "Ethiopia", "Ethiopia", "Ethiopia",
"Ethiopia", "Ethiopia", "Ethiopia", "Ethiopia", "Ethiopia", "Ethiopia",
"Ethiopia", "Ethiopia", "Ethiopia", "Ethiopia", "Ethiopia", "Ethiopia",
"Ethiopia", "Ethiopia", "Ethiopia", "Ethiopia", "Ethiopia", "Ethiopia",
"Ethiopia", "Ethiopia", "Ethiopia", "Ethiopia", "Ethiopia", "Ethiopia",
"Ethiopia", "Ethiopia", "Ethiopia", "Ethiopia", "Falkland Islands (Malvinas)",
"Falkland Islands (Malvinas)", "Falkland Islands (Malvinas)",
"Falkland Islands (Malvinas)", "Falkland Islands (Malvinas)",
"Falkland Islands (Malvinas)", "Falkland Islands (Malvinas)",
"Falkland Islands (Malvinas)", "Faroe Islands", "Faroe Islands",
"Faroe Islands", "Faroe Islands", "Faroe Islands", "Faroe Islands",
"Faroe Islands", "Faroe Islands", "Fiji", "Fiji", "Fiji", "Fiji",
"Fiji", "Fiji", "Fiji", "Fiji", "Fiji", "Fiji", "Fiji", "Fiji",
"Fiji", "Fiji", "Fiji", "Fiji", "Fiji", "Fiji", "Fiji", "Fiji",
"Fiji", "Fiji", "Fiji", "Fiji", "Fiji", "Fiji", "Fiji", "Fiji",
"Fiji", "Fiji", "Finland", "Finland", "Finland", "Finland", "Finland",
"Finland", "Finland", "Finland", "Finland", "Finland", "Finland",
"Finland", "Finland", "Finland", "Finland", "Finland", "Finland",
"Finland", "Finland", "Finland", "Finland", "Finland", "Finland",
"Finland", "Finland", "Finland", "Finland", "Finland", "Finland",
"Finland", "Finland", "Finland", "Finland", "Finland", "Finland",
"France", "France", "France", "France", "France", "France", "France",
"France", "France", "France", "France", "France", "France", "France",
"France", "France", "France", "France", "France", "France", "France",
"France", "France", "France", "France", "France", "France", "France",
"France", "France", "France", "France", "France", "France", "France",
"France", "French Guiana", "French Guiana", "French Guiana",
"French Guiana", "French Guiana", "French Guiana", "French Guiana",
"French Guiana", "French Guiana", "French Guiana", "French Guiana",
"French Guiana", "French Guiana", "French Guiana", "French Guiana",
"French Guiana", "French Polynesia", "French Polynesia", "French Polynesia",
"French Polynesia", "French Polynesia", "French Polynesia", "French Polynesia",
"French Polynesia", "French Polynesia", "French Polynesia", "French Polynesia",
"French Polynesia", "French Polynesia", "French Polynesia", "French Polynesia",
"French Polynesia", "Gabon", "Gabon", "Gabon", "Gabon", "Gabon",
"Gabon", "Gabon", "Gabon", "Gabon", "Gabon", "Gabon", "Gabon",
"Gabon", "Gabon", "Gabon", "Gabon", "Gabon", "Gabon", "Gabon",
"Gabon", "Gabon", "Gabon", "Gabon", "Gabon", "Gabon", "Gabon",
"Gabon", "Gabon", "Gabon", "Gabon", "Gabon", "Gabon", "Gabon",
"Gabon", "Gabon", "Gabon", "Gabon", "Gambia", "Gambia", "Gambia",
"Gambia", "Gambia", "Gambia", "Gambia", "Gambia", "Gambia", "Gambia",
"Gambia", "Gambia", "Gambia", "Gambia", "Gambia", "Gambia", "Gambia",
"Gambia", "Gambia", "Gambia", "Gambia", "Gambia", "Gambia", "Gambia",
"Gambia", "Gambia", "Gambia", "Gambia", "Gambia", "Gambia", "Gambia",
"Gambia", "Gambia", "Gambia", "Gambia", "Gambia", "Gambia", "Georgia",
"Georgia", "Georgia", "Georgia", "Georgia", "Georgia", "Georgia",
"Georgia", "Georgia", "Georgia", "Georgia", "Georgia", "Georgia",
"Georgia", "Georgia", "Georgia", "Georgia", "Georgia", "Georgia",
"Georgia", "Georgia", "Georgia", "Georgia", "Georgia", "Georgia",
"Georgia", "Georgia", "Georgia", "Georgia", "Georgia", "Georgia",
"Georgia", "Georgia", "Georgia", "Georgia", "Georgia", "Germany",
"Germany", "Germany", "Germany", "Germany", "Germany", "Germany",
"Germany", "Germany", "Germany", "Germany", "Germany", "Germany",
"Germany", "Germany", "Germany", "Germany", "Germany", "Germany",
"Germany", "Germany", "Germany", "Germany", "Germany", "Germany",
"Germany", "Germany", "Germany", "Germany", "Germany", "Germany",
"Germany", "Germany", "Germany", "Germany", "Germany", "Ghana",
"Ghana", "Ghana", "Ghana", "Ghana", "Ghana", "Ghana", "Ghana",
"Ghana", "Ghana", "Ghana", "Ghana", "Ghana", "Ghana", "Ghana",
"Ghana", "Ghana", "Ghana", "Ghana", "Ghana", "Ghana", "Ghana",
"Ghana", "Ghana", "Ghana", "Ghana", "Ghana", "Ghana", "Ghana",
"Ghana", "Ghana", "Ghana", "Ghana", "Ghana", "Ghana", "Ghana",
"Ghana", "Gibraltar", "Gibraltar", "Gibraltar", "Gibraltar",
"Gibraltar", "Gibraltar", "Gibraltar", "Gibraltar", "Greece",
"Greece", "Greece", "Greece", "Greece", "Greece", "Greece", "Greece",
"Greece", "Greece", "Greece", "Greece", "Greece", "Greece", "Greece",
"Greece", "Greece", "Greece", "Greece", "Greece", "Greece", "Greece",
"Greece", "Greece", "Greece", "Greece", "Greece", "Greece", "Greece",
"Greece", "Greece", "Greece", "Greece", "Greece", "Greece", "Greece",
"Greenland", "Greenland", "Greenland", "Greenland", "Greenland",
"Greenland", "Greenland", "Greenland", "Grenada", "Grenada",
"Grenada", "Grenada", "Grenada", "Grenada", "Grenada", "Grenada",
"Grenada", "Grenada", "Grenada", "Grenada", "Grenada", "Grenada",
"Grenada", "Grenada", "Grenada", "Grenada", "Grenada", "Grenada",
"Grenada", "Grenada", "Grenada", "Grenada", "Grenada", "Guadeloupe",
"Guadeloupe", "Guadeloupe", "Guadeloupe", "Guadeloupe", "Guadeloupe",
"Guadeloupe", "Guadeloupe", "Guadeloupe", "Guadeloupe", "Guadeloupe",
"Guadeloupe", "Guadeloupe", "Guadeloupe", "Guadeloupe", "Guadeloupe",
"Guam", "Guam", "Guam", "Guam", "Guam", "Guam", "Guam", "Guam",
"Guam", "Guam", "Guam", "Guam", "Guam", "Guam", "Guam", "Guam",
"Guatemala", "Guatemala", "Guatemala", "Guatemala", "Guatemala",
"Guatemala", "Guatemala", "Guatemala", "Guatemala", "Guatemala",
"Guatemala", "Guatemala", "Guatemala", "Guatemala", "Guatemala",
"Guatemala", "Guatemala", "Guatemala", "Guatemala", "Guatemala",
"Guatemala", "Guatemala", "Guatemala", "Guatemala", "Guatemala",
"Guatemala", "Guatemala", "Guatemala", "Guatemala", "Guatemala",
"Guatemala", "Guatemala", "Guatemala", "Guinea", "Guinea", "Guinea",
"Guinea", "Guinea", "Guinea", "Guinea", "Guinea", "Guinea", "Guinea",
"Guinea", "Guinea", "Guinea", "Guinea", "Guinea", "Guinea", "Guinea",
"Guinea", "Guinea", "Guinea", "Guinea", "Guinea", "Guinea", "Guinea",
"Guinea", "Guinea", "Guinea", "Guinea", "Guinea", "Guinea", "Guinea",
"Guinea", "Guinea", "Guinea", "Guinea", "Guinea", "Guinea", "Guinea-Bissau",
"Guinea-Bissau", "Guinea-Bissau", "Guinea-Bissau", "Guinea-Bissau",
"Guinea-Bissau", "Guinea-Bissau", "Guinea-Bissau", "Guinea-Bissau",
"Guinea-Bissau", "Guinea-Bissau", "Guinea-Bissau", "Guinea-Bissau",
"Guinea-Bissau", "Guinea-Bissau", "Guinea-Bissau", "Guinea-Bissau",
"Guinea-Bissau", "Guinea-Bissau", "Guinea-Bissau", "Guinea-Bissau",
"Guinea-Bissau", "Guinea-Bissau", "Guinea-Bissau", "Guinea-Bissau",
"Guinea-Bissau", "Guinea-Bissau", "Guinea-Bissau", "Guinea-Bissau",
"Guinea-Bissau", "Guinea-Bissau", "Guinea-Bissau", "Guyana",
"Guyana", "Guyana", "Guyana", "Guyana", "Guyana", "Guyana", "Guyana",
"Guyana", "Guyana", "Guyana", "Guyana", "Guyana", "Guyana", "Guyana",
"Guyana", "Guyana", "Guyana", "Guyana", "Guyana", "Guyana", "Guyana",
"Guyana", "Guyana", "Guyana", "Guyana", "Guyana", "Guyana", "Guyana",
"Haiti", "Haiti", "Haiti", "Haiti", "Haiti", "Haiti", "Haiti",
"Haiti", "Haiti", "Haiti", "Haiti", "Haiti", "Haiti", "Haiti",
"Haiti", "Haiti", "Haiti", "Haiti", "Haiti", "Haiti", "Haiti",
"Haiti", "Haiti", "Haiti", "Haiti", "Haiti", "Haiti", "Haiti",
"Haiti", "Haiti", "Holy See", "Holy See", "Holy See", "Holy See",
"Holy See", "Holy See", "Holy See", "Holy See", "Honduras", "Honduras",
"Honduras", "Honduras", "Honduras", "Honduras", "Honduras", "Honduras",
"Honduras", "Honduras", "Honduras", "Honduras", "Honduras", "Honduras",
"Honduras", "Honduras", "Honduras", "Honduras", "Honduras", "Honduras",
"Honduras", "Honduras", "Honduras", "Honduras", "Honduras", "Honduras",
"Honduras", "Honduras", "Honduras", "Honduras", "Honduras", "Honduras",
"Honduras", "Hungary", "Hungary", "Hungary", "Hungary", "Hungary",
"Hungary", "Hungary", "Hungary", "Hungary", "Hungary", "Hungary",
"Hungary", "Hungary", "Hungary", "Hungary", "Hungary", "Hungary",
"Hungary", "Hungary", "Hungary", "Hungary", "Hungary", "Hungary",
"Hungary", "Hungary", "Hungary", "Hungary", "Hungary", "Hungary",
"Hungary", "Hungary", "Hungary", "Hungary", "Hungary", "Hungary",
"Hungary", "Iceland", "Iceland", "Iceland", "Iceland", "Iceland",
"Iceland", "Iceland", "Iceland", "Iceland", "Iceland", "Iceland",
"Iceland", "Iceland", "Iceland", "Iceland", "Iceland", "Iceland",
"Iceland", "Iceland", "Iceland", "Iceland", "Iceland", "Iceland",
"Iceland", "Iceland", "Iceland", "Iceland", "Iceland", "Iceland",
"Iceland", "Iceland", "Iceland", "Iceland", "Iceland", "Iceland",
"Iceland", "India", "India", "India", "India", "India", "India",
"India", "India", "India", "India", "India", "India", "India",
"India", "India", "India", "India", "India", "India", "India",
"India", "India", "India", "India", "India", "India", "India",
"India", "India", "India", "India", "India", "India", "India",
"Indonesia", "Indonesia", "Indonesia", "Indonesia", "Indonesia",
"Indonesia", "Indonesia", "Indonesia", "Indonesia", "Indonesia",
"Indonesia", "Indonesia", "Indonesia", "Indonesia", "Indonesia",
"Indonesia", "Indonesia", "Indonesia", "Indonesia", "Indonesia",
"Indonesia", "Indonesia", "Indonesia", "Indonesia", "Indonesia",
"Indonesia", "Indonesia", "Indonesia", "Indonesia", "Indonesia",
"Indonesia", "Indonesia", "Indonesia", "Indonesia", "Iran (Islamic Republic of)",
"Iran (Islamic Republic of)", "Iran (Islamic Republic of)", "Iran (Islamic Republic of)",
"Iran (Islamic Republic of)", "Iran (Islamic Republic of)", "Iran (Islamic Republic of)",
"Iran (Islamic Republic of)", "Iran (Islamic Republic of)", "Iran (Islamic Republic of)",
"Iran (Islamic Republic of)", "Iran (Islamic Republic of)", "Iran (Islamic Republic of)",
"Iran (Islamic Republic of)", "Iran (Islamic Republic of)", "Iran (Islamic Republic of)",
"Iran (Islamic Republic of)", "Iran (Islamic Republic of)", "Iran (Islamic Republic of)",
"Iran (Islamic Republic of)", "Iran (Islamic Republic of)", "Iran (Islamic Republic of)",
"Iran (Islamic Republic of)", "Iran (Islamic Republic of)", "Iran (Islamic Republic of)",
"Iran (Islamic Republic of)", "Iran (Islamic Republic of)", "Iran (Islamic Republic of)",
"Iran (Islamic Republic of)", "Iran (Islamic Republic of)", "Iran (Islamic Republic of)",
"Iran (Islamic Republic of)", "Iran (Islamic Republic of)", "Iran (Islamic Republic of)",
"Iran (Islamic Republic of)", "Iran (Islamic Republic of)", "Iraq",
"Iraq", "Iraq", "Iraq", "Iraq", "Iraq", "Iraq", "Iraq", "Iraq",
"Iraq", "Iraq", "Iraq", "Iraq", "Iraq", "Iraq", "Iraq", "Iraq",
"Iraq", "Iraq", "Iraq", "Iraq", "Iraq", "Iraq", "Iraq", "Iraq",
"Iraq", "Iraq", "Iraq", "Iraq", "Iraq", "Iraq", "Iraq", "Iraq",
"Iraq", "Iraq", "Iraq", "Ireland", "Ireland", "Ireland", "Ireland",
"Ireland", "Ireland", "Ireland", "Ireland", "Ireland", "Ireland",
"Ireland", "Ireland", "Ireland", "Ireland", "Ireland", "Ireland",
"Ireland", "Ireland", "Ireland", "Ireland", "Ireland", "Ireland",
"Ireland", "Ireland", "Ireland", "Ireland", "Ireland", "Ireland",
"Ireland", "Ireland", "Ireland", "Ireland", "Ireland", "Ireland",
"Ireland", "Ireland", "Isle of Man", "Isle of Man", "Isle of Man",
"Isle of Man", "Isle of Man", "Isle of Man", "Isle of Man", "Isle of Man",
"Israel", "Israel", "Israel", "Israel", "Israel", "Israel", "Israel",
"Israel", "Israel", "Israel", "Israel", "Israel", "Israel", "Israel",
"Israel", "Israel", "Israel", "Israel", "Israel", "Israel", "Israel",
"Israel", "Israel", "Israel", "Israel", "Israel", "Israel", "Israel",
"Israel", "Israel", "Israel", "Israel", "Israel", "Israel", "Israel",
"Italy", "Italy", "Italy", "Italy", "Italy", "Italy", "Italy",
"Italy", "Italy", "Italy", "Italy", "Italy", "Italy", "Italy",
"Italy", "Italy", "Italy", "Italy", "Italy", "Italy", "Italy",
"Italy", "Italy", "Italy", "Italy", "Italy", "Italy", "Italy",
"Italy", "Italy", "Italy", "Italy", "Italy", "Italy", "Italy",
"Jamaica", "Jamaica", "Jamaica", "Jamaica", "Jamaica", "Jamaica",
"Jamaica", "Jamaica", "Jamaica", "Jamaica", "Jamaica", "Jamaica",
"Jamaica", "Jamaica", "Jamaica", "Jamaica", "Jamaica", "Jamaica",
"Jamaica", "Jamaica", "Jamaica", "Jamaica", "Jamaica", "Jamaica",
"Jamaica", "Jamaica", "Jamaica", "Jamaica", "Jamaica", "Japan",
"Japan", "Japan", "Japan", "Japan", "Japan", "Japan", "Japan",
"Japan", "Japan", "Japan", "Japan", "Japan", "Japan", "Japan",
"Japan", "Japan", "Japan", "Japan", "Japan", "Japan", "Japan",
"Japan", "Japan", "Japan", "Japan", "Japan", "Japan", "Japan",
"Japan", "Japan", "Japan", "Japan", "Japan", "Japan", "Japan",
"Jordan", "Jordan", "Jordan", "Jordan", "Jordan", "Jordan", "Jordan",
"Jordan", "Jordan", "Jordan", "Jordan", "Jordan", "Jordan", "Jordan",
"Jordan", "Jordan", "Jordan", "Jordan", "Jordan", "Jordan", "Jordan",
"Jordan", "Jordan", "Jordan", "Jordan", "Jordan", "Jordan", "Jordan",
"Jordan", "Jordan", "Jordan", "Jordan", "Jordan", "Jordan", "Jordan",
"Kazakhstan", "Kazakhstan", "Kazakhstan", "Kazakhstan", "Kazakhstan",
"Kazakhstan", "Kazakhstan", "Kazakhstan", "Kazakhstan", "Kazakhstan",
"Kazakhstan", "Kazakhstan", "Kazakhstan", "Kazakhstan", "Kazakhstan",
"Kazakhstan", "Kazakhstan", "Kazakhstan", "Kazakhstan", "Kazakhstan",
"Kazakhstan", "Kazakhstan", "Kazakhstan", "Kazakhstan", "Kazakhstan",
"Kazakhstan", "Kazakhstan", "Kazakhstan", "Kazakhstan", "Kazakhstan",
"Kazakhstan", "Kazakhstan", "Kazakhstan", "Kazakhstan", "Kazakhstan",
"Kazakhstan", "Kenya", "Kenya", "Kenya", "Kenya", "Kenya", "Kenya",
"Kenya", "Kenya", "Kenya", "Kenya", "Kenya", "Kenya", "Kenya",
"Kenya", "Kenya", "Kenya", "Kenya", "Kenya", "Kenya", "Kenya",
"Kenya", "Kenya", "Kenya", "Kenya", "Kenya", "Kenya", "Kenya",
"Kenya", "Kenya", "Kenya", "Kenya", "Kenya", "Kenya", "Kenya",
"Kenya", "Kenya", "Kiribati", "Kiribati", "Kiribati", "Kiribati",
"Kiribati", "Kiribati", "Kiribati", "Kiribati", "Kiribati", "Kiribati",
"Kiribati", "Kiribati", "Kiribati", "Kiribati", "Kiribati", "Kiribati",
"Kuwait", "Kuwait", "Kuwait", "Kuwait", "Kuwait", "Kuwait", "Kuwait",
"Kuwait", "Kuwait", "Kuwait", "Kuwait", "Kuwait", "Kuwait", "Kuwait",
"Kuwait", "Kuwait", "Kuwait", "Kuwait", "Kuwait", "Kuwait", "Kuwait",
"Kuwait", "Kuwait", "Kuwait", "Kuwait", "Kuwait", "Kuwait", "Kuwait",
"Kuwait", "Kuwait", "Kuwait", "Kuwait", "Kuwait", "Kuwait", "Kuwait",
"Kuwait", "Kyrgyzstan", "Kyrgyzstan", "Kyrgyzstan", "Kyrgyzstan",
"Kyrgyzstan", "Kyrgyzstan", "Kyrgyzstan", "Kyrgyzstan", "Kyrgyzstan",
"Kyrgyzstan", "Kyrgyzstan", "Kyrgyzstan", "Kyrgyzstan", "Kyrgyzstan",
"Kyrgyzstan", "Kyrgyzstan", "Kyrgyzstan", "Kyrgyzstan", "Kyrgyzstan",
"Kyrgyzstan", "Kyrgyzstan", "Kyrgyzstan", "Kyrgyzstan", "Kyrgyzstan",
"Kyrgyzstan", "Kyrgyzstan", "Kyrgyzstan", "Kyrgyzstan", "Kyrgyzstan",
"Kyrgyzstan", "Kyrgyzstan", "Kyrgyzstan", "Kyrgyzstan", "Kyrgyzstan",
"Kyrgyzstan", "Kyrgyzstan", "Lao People's Dem. Rep.", "Lao People's Dem. Rep.",
"Lao People's Dem. Rep.", "Lao People's Dem. Rep.", "Lao People's Dem. Rep.",
"Lao People's Dem. Rep.", "Lao People's Dem. Rep.", "Lao People's Dem. Rep.",
"Lao People's Dem. Rep.", "Lao People's Dem. Rep.", "Lao People's Dem. Rep.",
"Lao People's Dem. Rep.", "Lao People's Dem. Rep.", "Lao People's Dem. Rep.",
"Lao People's Dem. Rep.", "Lao People's Dem. Rep.", "Lao People's Dem. Rep.",
"Lao People's Dem. Rep.", "Lao People's Dem. Rep.", "Latvia",
"Latvia", "Latvia", "Latvia", "Latvia", "Latvia", "Latvia", "Latvia",
"Latvia", "Latvia", "Latvia", "Latvia", "Latvia", "Latvia", "Latvia",
"Latvia", "Latvia", "Latvia", "Latvia", "Latvia", "Latvia", "Latvia",
"Latvia", "Latvia", "Latvia", "Latvia", "Latvia", "Latvia", "Latvia",
"Latvia", "Latvia", "Latvia", "Latvia", "Latvia", "Latvia", "Latvia",
"Lebanon", "Lebanon", "Lebanon", "Lebanon", "Lebanon", "Lebanon",
"Lebanon", "Lebanon", "Lebanon", "Lebanon", "Lebanon", "Lebanon",
"Lebanon", "Lebanon", "Lebanon", "Lebanon", "Lebanon", "Lebanon",
"Lebanon", "Lebanon", "Lebanon", "Lebanon", "Lebanon", "Lebanon",
"Lebanon", "Lebanon", "Lebanon", "Lebanon", "Lebanon", "Lebanon",
"Lebanon", "Lebanon", "Lebanon", "Lebanon", "Lebanon", "Lebanon",
"Lesotho", "Lesotho", "Lesotho", "Lesotho", "Lesotho", "Lesotho",
"Lesotho", "Lesotho", "Lesotho", "Lesotho", "Lesotho", "Lesotho",
"Lesotho", "Lesotho", "Lesotho", "Lesotho", "Lesotho", "Lesotho",
"Lesotho", "Lesotho", "Lesotho", "Lesotho", "Lesotho", "Lesotho",
"Lesotho", "Lesotho", "Liberia", "Liberia", "Liberia", "Liberia",
"Liberia", "Liberia", "Liberia", "Liberia", "Liberia", "Liberia",
"Liberia", "Liberia", "Liberia", "Liberia", "Liberia", "Liberia",
"Liberia", "Liberia", "Liberia", "Liberia", "Liberia", "Liberia",
"Liberia", "Liberia", "Liberia", "Liberia", "Liberia", "Liberia",
"Liberia", "Liberia", "Liberia", "Liberia", "Liberia", "Liberia",
"Liberia", "Libya", "Libya", "Libya", "Libya", "Libya", "Libya",
"Libya", "Libya", "Libya", "Libya", "Libya", "Libya", "Libya",
"Libya", "Libya", "Libya", "Libya", "Libya", "Libya", "Libya",
"Libya", "Libya", "Libya", "Libya", "Libya", "Libya", "Libya",
"Libya", "Libya", "Libya", "Libya", "Libya", "Libya", "Libya",
"Libya", "Libya", "Liechtenstein", "Liechtenstein", "Liechtenstein",
"Liechtenstein", "Liechtenstein", "Liechtenstein", "Liechtenstein",
"Liechtenstein", "Liechtenstein", "Liechtenstein", "Liechtenstein",
"Liechtenstein", "Liechtenstein", "Liechtenstein", "Liechtenstein",
"Liechtenstein", "Liechtenstein", "Liechtenstein", "Liechtenstein",
"Liechtenstein", "Liechtenstein", "Liechtenstein", "Liechtenstein",
"Liechtenstein", "Liechtenstein", "Lithuania", "Lithuania", "Lithuania",
"Lithuania", "Lithuania", "Lithuania", "Lithuania", "Lithuania",
"Lithuania", "Lithuania", "Lithuania", "Lithuania", "Lithuania",
"Lithuania", "Lithuania", "Lithuania", "Lithuania", "Lithuania",
"Lithuania", "Lithuania", "Lithuania", "Lithuania", "Lithuania",
"Lithuania", "Lithuania", "Lithuania", "Lithuania", "Lithuania",
"Lithuania", "Lithuania", "Lithuania", "Lithuania", "Lithuania",
"Lithuania", "Lithuania", "Lithuania", "Luxembourg", "Luxembourg",
"Luxembourg", "Luxembourg", "Luxembourg", "Luxembourg", "Luxembourg",
"Luxembourg", "Luxembourg", "Luxembourg", "Luxembourg", "Luxembourg",
"Luxembourg", "Luxembourg", "Luxembourg", "Luxembourg", "Luxembourg",
"Luxembourg", "Luxembourg", "Luxembourg", "Luxembourg", "Luxembourg",
"Luxembourg", "Luxembourg", "Luxembourg", "Luxembourg", "Luxembourg",
"Luxembourg", "Luxembourg", "Luxembourg", "Luxembourg", "Luxembourg",
"Luxembourg", "Luxembourg", "Luxembourg", "Madagascar", "Madagascar",
"Madagascar", "Madagascar", "Madagascar", "Madagascar", "Madagascar",
"Madagascar", "Madagascar", "Madagascar", "Madagascar", "Madagascar",
"Madagascar", "Madagascar", "Madagascar", "Madagascar", "Madagascar",
"Madagascar", "Madagascar", "Madagascar", "Madagascar", "Madagascar",
"Madagascar", "Madagascar", "Madagascar", "Madagascar", "Madagascar",
"Madagascar", "Malawi", "Malawi", "Malawi", "Malawi", "Malawi",
"Malawi", "Malawi", "Malawi", "Malawi", "Malawi", "Malawi", "Malawi",
"Malawi", "Malawi", "Malawi", "Malawi", "Malawi", "Malawi", "Malawi",
"Malawi", "Malawi", "Malawi", "Malawi", "Malawi", "Malawi", "Malawi",
"Malawi", "Malawi", "Malawi", "Malawi", "Malawi", "Malawi", "Malawi",
"Malawi", "Malawi", "Malaysia", "Malaysia", "Malaysia", "Malaysia",
"Malaysia", "Malaysia", "Malaysia", "Malaysia", "Malaysia", "Malaysia",
"Malaysia", "Malaysia", "Malaysia", "Malaysia", "Malaysia", "Malaysia",
"Malaysia", "Malaysia", "Malaysia", "Malaysia", "Malaysia", "Malaysia",
"Malaysia", "Malaysia", "Malaysia", "Malaysia", "Malaysia", "Malaysia",
"Malaysia", "Malaysia", "Malaysia", "Malaysia", "Malaysia", "Malaysia",
"Malaysia", "Malaysia", "Maldives", "Maldives", "Maldives", "Maldives",
"Maldives", "Maldives", "Maldives", "Maldives", "Maldives", "Maldives",
"Maldives", "Maldives", "Maldives", "Maldives", "Maldives", "Maldives",
"Mali", "Mali", "Mali", "Mali", "Mali", "Mali", "Mali", "Mali",
"Mali", "Mali", "Mali", "Mali", "Mali", "Mali", "Mali", "Mali",
"Mali", "Mali", "Mali", "Mali", "Mali", "Mali", "Mali", "Mali",
"Mali", "Mali", "Mali", "Mali", "Mali", "Mali", "Mali", "Mali",
"Mali", "Mali", "Malta", "Malta", "Malta", "Malta", "Malta",
"Malta", "Malta", "Malta", "Malta", "Malta", "Malta", "Malta",
"Malta", "Malta", "Malta", "Malta", "Malta", "Malta", "Malta",
"Malta", "Malta", "Malta", "Malta", "Malta", "Malta", "Malta",
"Malta", "Malta", "Malta", "Malta", "Malta", "Malta", "Marshall Islands",
"Marshall Islands", "Marshall Islands", "Marshall Islands", "Marshall Islands",
"Marshall Islands", "Marshall Islands", "Marshall Islands", "Martinique",
"Martinique", "Martinique", "Martinique", "Martinique", "Martinique",
"Martinique", "Martinique", "Martinique", "Martinique", "Martinique",
"Martinique", "Martinique", "Martinique", "Martinique", "Martinique",
"Mauritania", "Mauritania", "Mauritania", "Mauritania", "Mauritania",
"Mauritania", "Mauritania", "Mauritania", "Mauritania", "Mauritania",
"Mauritania", "Mauritania", "Mauritania", "Mauritania", "Mauritania",
"Mauritania", "Mauritania", "Mauritania", "Mauritania", "Mauritania",
"Mauritania", "Mauritania", "Mauritania", "Mauritania", "Mauritania",
"Mauritania", "Mauritania", "Mauritania", "Mauritania", "Mauritania",
"Mauritania", "Mauritania", "Mauritania", "Mauritius", "Mauritius",
"Mauritius", "Mauritius", "Mauritius", "Mauritius", "Mauritius",
"Mauritius", "Mauritius", "Mauritius", "Mauritius", "Mauritius",
"Mauritius", "Mauritius", "Mauritius", "Mauritius", "Mauritius",
"Mauritius", "Mauritius", "Mauritius", "Mauritius", "Mayotte",
"Mayotte", "Mayotte", "Mayotte", "Mayotte", "Mayotte", "Mayotte",
"Mayotte", "Mayotte", "Mayotte", "Mayotte", "Mayotte", "Mayotte",
"Mayotte", "Mayotte", "Mayotte", "Mexico", "Mexico", "Mexico",
"Mexico", "Mexico", "Mexico", "Mexico", "Mexico", "Mexico", "Mexico",
"Mexico", "Mexico", "Mexico", "Mexico", "Mexico", "Mexico", "Mexico",
"Mexico", "Mexico", "Mexico", "Mexico", "Mexico", "Mexico", "Mexico",
"Mexico", "Mexico", "Mexico", "Mexico", "Mexico", "Mexico", "Mexico",
"Mexico", "Mexico", "Mexico", "Micronesia (Fed. States of)",
"Micronesia (Fed. States of)", "Micronesia (Fed. States of)",
"Micronesia (Fed. States of)", "Micronesia (Fed. States of)",
"Micronesia (Fed. States of)", "Micronesia (Fed. States of)",
"Micronesia (Fed. States of)", "Micronesia (Fed. States of)",
"Micronesia (Fed. States of)", "Micronesia (Fed. States of)",
"Micronesia (Fed. States of)", "Micronesia (Fed. States of)",
"Micronesia (Fed. States of)", "Micronesia (Fed. States of)",
"Micronesia (Fed. States of)", "Micronesia (Fed. States of)",
"Micronesia (Fed. States of)", "Micronesia (Fed. States of)",
"Micronesia (Fed. States of)", "Micronesia (Fed. States of)",
"Micronesia (Fed. States of)", "Micronesia (Fed. States of)",
"Monaco", "Monaco", "Monaco", "Monaco", "Monaco", "Monaco", "Monaco",
"Monaco", "Monaco", "Monaco", "Monaco", "Monaco", "Monaco", "Monaco",
"Monaco", "Monaco", "Mongolia", "Mongolia", "Mongolia", "Mongolia",
"Mongolia", "Mongolia", "Mongolia", "Mongolia", "Mongolia", "Mongolia",
"Mongolia", "Mongolia", "Mongolia", "Mongolia", "Mongolia", "Mongolia",
"Mongolia", "Mongolia", "Mongolia", "Mongolia", "Mongolia", "Mongolia",
"Mongolia", "Mongolia", "Mongolia", "Mongolia", "Mongolia", "Mongolia",
"Mongolia", "Mongolia", "Mongolia", "Mongolia", "Mongolia", "Mongolia",
"Mongolia", "Montenegro", "Montenegro", "Montenegro", "Montenegro",
"Montenegro", "Montenegro", "Montenegro", "Montenegro", "Montenegro",
"Montenegro", "Montenegro", "Montenegro", "Montenegro", "Montenegro",
"Montenegro", "Montenegro", "Montenegro", "Montenegro", "Montenegro",
"Montenegro", "Montenegro", "Montenegro", "Montenegro", "Montenegro",
"Montenegro", "Montenegro", "Montenegro", "Montenegro", "Montserrat",
"Montserrat", "Montserrat", "Montserrat", "Montserrat", "Montserrat",
"Montserrat", "Montserrat", "Montserrat", "Montserrat", "Morocco",
"Morocco", "Morocco", "Morocco", "Morocco", "Morocco", "Morocco",
"Morocco", "Morocco", "Morocco", "Morocco", "Morocco", "Morocco",
"Morocco", "Morocco", "Morocco", "Morocco", "Morocco", "Morocco",
"Morocco", "Morocco", "Morocco", "Morocco", "Morocco", "Morocco",
"Morocco", "Morocco", "Morocco", "Morocco", "Morocco", "Morocco",
"Morocco", "Mozambique", "Mozambique", "Mozambique", "Mozambique",
"Mozambique", "Mozambique", "Mozambique", "Mozambique", "Mozambique",
"Mozambique", "Mozambique", "Mozambique", "Mozambique", "Mozambique",
"Mozambique", "Mozambique", "Mozambique", "Mozambique", "Mozambique",
"Mozambique", "Mozambique", "Mozambique", "Mozambique", "Mozambique",
"Mozambique", "Mozambique", "Mozambique", "Mozambique", "Mozambique",
"Mozambique", "Mozambique", "Mozambique", "Mozambique", "Mozambique",
"Mozambique", "Mozambique", "Myanmar", "Myanmar", "Myanmar",
"Myanmar", "Myanmar", "Myanmar", "Myanmar", "Myanmar", "Myanmar",
"Myanmar", "Myanmar", "Myanmar", "Myanmar", "Myanmar", "Myanmar",
"Myanmar", "Myanmar", "Myanmar", "Myanmar", "Myanmar", "Myanmar",
"Myanmar", "Myanmar", "Myanmar", "Myanmar", "Myanmar", "Myanmar",
"Myanmar", "Myanmar", "Namibia", "Namibia", "Namibia", "Namibia",
"Namibia", "Namibia", "Namibia", "Namibia", "Namibia", "Namibia",
"Namibia", "Namibia", "Namibia", "Namibia", "Namibia", "Namibia",
"Namibia", "Namibia", "Namibia", "Namibia", "Namibia", "Namibia",
"Namibia", "Namibia", "Namibia", "Namibia", "Namibia", "Namibia",
"Namibia", "Namibia", "Namibia", "Namibia", "Namibia", "Namibia",
"Namibia", "Namibia", "Nauru", "Nauru", "Nauru", "Nauru", "Nauru",
"Nauru", "Nauru", "Nauru", "Nauru", "Nauru", "Nauru", "Nauru",
"Nauru", "Nauru", "Nauru", "Nauru", "Nauru", "Nauru", "Nepal",
"Nepal", "Nepal", "Nepal", "Nepal", "Nepal", "Nepal", "Nepal",
"Nepal", "Nepal", "Nepal", "Nepal", "Nepal", "Nepal", "Nepal",
"Nepal", "Nepal", "Nepal", "Nepal", "Nepal", "Nepal", "Nepal",
"Nepal", "Nepal", "Nepal", "Nepal", "Nepal", "Nepal", "Nepal",
"Nepal", "Nepal", "Nepal", "Nepal", "Nepal", "Nepal", "Nepal",
"Netherlands (Kingdom of the)", "Netherlands (Kingdom of the)",
"Netherlands (Kingdom of the)", "Netherlands (Kingdom of the)",
"Netherlands (Kingdom of the)", "Netherlands (Kingdom of the)",
"Netherlands (Kingdom of the)", "Netherlands (Kingdom of the)",
"Netherlands (Kingdom of the)", "Netherlands (Kingdom of the)",
"Netherlands (Kingdom of the)", "Netherlands (Kingdom of the)",
"Netherlands (Kingdom of the)", "Netherlands (Kingdom of the)",
"Netherlands (Kingdom of the)", "Netherlands (Kingdom of the)",
"Netherlands (Kingdom of the)", "Netherlands (Kingdom of the)",
"Netherlands (Kingdom of the)", "Netherlands (Kingdom of the)",
"Netherlands (Kingdom of the)", "Netherlands (Kingdom of the)",
"Netherlands (Kingdom of the)", "Netherlands (Kingdom of the)",
"Netherlands (Kingdom of the)", "Netherlands (Kingdom of the)",
"Netherlands (Kingdom of the)", "Netherlands (Kingdom of the)",
"Netherlands (Kingdom of the)", "Netherlands (Kingdom of the)",
"Netherlands (Kingdom of the)", "Netherlands (Kingdom of the)",
"Netherlands (Kingdom of the)", "Netherlands (Kingdom of the)",
"Netherlands (Kingdom of the)", "Netherlands (Kingdom of the)",
"New Caledonia", "New Caledonia", "New Caledonia", "New Caledonia",
"New Caledonia", "New Caledonia", "New Caledonia", "New Caledonia",
"New Caledonia", "New Caledonia", "New Caledonia", "New Caledonia",
"New Caledonia", "New Caledonia", "New Caledonia", "New Caledonia",
"New Zealand", "New Zealand", "New Zealand", "New Zealand", "New Zealand",
"New Zealand", "New Zealand", "New Zealand", "New Zealand", "New Zealand",
"New Zealand", "New Zealand", "New Zealand", "New Zealand", "New Zealand",
"New Zealand", "New Zealand", "New Zealand", "New Zealand", "New Zealand",
"New Zealand", "New Zealand", "New Zealand", "New Zealand", "New Zealand",
"New Zealand", "New Zealand", "New Zealand", "New Zealand", "New Zealand",
"New Zealand", "New Zealand", "New Zealand", "New Zealand", "Nicaragua",
"Nicaragua", "Nicaragua", "Nicaragua", "Nicaragua", "Nicaragua",
"Nicaragua", "Nicaragua", "Nicaragua", "Nicaragua", "Nicaragua",
"Nicaragua", "Nicaragua", "Nicaragua", "Nicaragua", "Nicaragua",
"Nicaragua", "Nicaragua", "Nicaragua", "Nicaragua", "Nicaragua",
"Nicaragua", "Nicaragua", "Nicaragua", "Nicaragua", "Nicaragua",
"Nicaragua", "Nicaragua", "Nicaragua", "Nicaragua", "Nicaragua",
"Nicaragua", "Nicaragua", "Nicaragua", "Niger", "Niger", "Niger",
"Niger", "Niger", "Niger", "Niger", "Niger", "Niger", "Niger",
"Niger", "Niger", "Niger", "Niger", "Niger", "Niger", "Niger",
"Niger", "Niger", "Niger", "Niger", "Niger", "Niger", "Niger",
"Niger", "Niger", "Niger", "Niger", "Niger", "Niger", "Niger",
"Niger", "Niger", "Niger", "Niger", "Niger", "Nigeria", "Nigeria",
"Nigeria", "Nigeria", "Nigeria", "Nigeria", "Nigeria", "Nigeria",
"Nigeria", "Nigeria", "Nigeria", "Nigeria", "Nigeria", "Nigeria",
"Nigeria", "Nigeria", "Nigeria", "Nigeria", "Nigeria", "Nigeria",
"Nigeria", "Nigeria", "Nigeria", "Nigeria", "Nigeria", "Nigeria",
"Nigeria", "Nigeria", "Nigeria", "Nigeria", "Nigeria", "Nigeria",
"Nigeria", "Nigeria", "Nigeria", "Nigeria", "Niue", "Niue", "Niue",
"Niue", "Niue", "Niue", "Niue", "Niue", "North Macedonia", "North Macedonia",
"North Macedonia", "North Macedonia", "North Macedonia", "North Macedonia",
"North Macedonia", "North Macedonia", "North Macedonia", "North Macedonia",
"North Macedonia", "North Macedonia", "North Macedonia", "North Macedonia",
"North Macedonia", "North Macedonia", "North Macedonia", "North Macedonia",
"North Macedonia", "North Macedonia", "North Macedonia", "North Macedonia",
"North Macedonia", "North Macedonia", "North Macedonia", "North Macedonia",
"North Macedonia", "North Macedonia", "North Macedonia", "North Macedonia",
"North Macedonia", "North Macedonia", "North Macedonia", "North Macedonia",
"North Macedonia", "North Macedonia", "Northern Mariana Islands",
"Northern Mariana Islands", "Northern Mariana Islands", "Northern Mariana Islands",
"Northern Mariana Islands", "Northern Mariana Islands", "Northern Mariana Islands",
"Northern Mariana Islands", "Norway", "Norway", "Norway", "Norway",
"Norway", "Norway", "Norway", "Norway", "Norway", "Norway", "Norway",
"Norway", "Norway", "Norway", "Norway", "Norway", "Norway", "Norway",
"Norway", "Norway", "Norway", "Norway", "Norway", "Norway", "Norway",
"Norway", "Norway", "Norway", "Norway", "Norway", "Norway", "Norway",
"Norway", "Norway", "Norway", "Oman", "Oman", "Oman", "Oman",
"Oman", "Oman", "Oman", "Oman", "Oman", "Oman", "Oman", "Oman",
"Oman", "Oman", "Oman", "Oman", "Oman", "Oman", "Oman", "Oman",
"Oman", "Oman", "Oman", "Oman", "Oman", "Oman", "Oman", "Oman",
"Oman", "Oman", "Oman", "Pakistan", "Pakistan", "Pakistan", "Pakistan",
"Pakistan", "Pakistan", "Pakistan", "Pakistan", "Pakistan", "Pakistan",
"Pakistan", "Pakistan", "Pakistan", "Pakistan", "Pakistan", "Pakistan",
"Pakistan", "Pakistan", "Pakistan", "Pakistan", "Pakistan", "Pakistan",
"Pakistan", "Pakistan", "Pakistan", "Pakistan", "Pakistan", "Pakistan",
"Pakistan", "Pakistan", "Pakistan", "Pakistan", "Pakistan", "Pakistan",
"Pakistan", "Pakistan", "Palau", "Palau", "Palau", "Palau", "Palau",
"Palau", "Palau", "Palau", "Palau", "Palau", "Palau", "Palau",
"Palau", "Palau", "Panama", "Panama", "Panama", "Panama", "Panama",
"Panama", "Panama", "Panama", "Panama", "Panama", "Panama", "Panama",
"Panama", "Panama", "Panama", "Panama", "Panama", "Panama", "Panama",
"Panama", "Panama", "Panama", "Panama", "Panama", "Panama", "Panama",
"Panama", "Panama", "Panama", "Panama", "Panama", "Panama", "Panama",
"Panama", "Panama", "Panama", "Papua New Guinea", "Papua New Guinea",
"Papua New Guinea", "Papua New Guinea", "Papua New Guinea", "Papua New Guinea",
"Papua New Guinea", "Papua New Guinea", "Papua New Guinea", "Papua New Guinea",
"Papua New Guinea", "Papua New Guinea", "Papua New Guinea", "Papua New Guinea",
"Papua New Guinea", "Papua New Guinea", "Papua New Guinea", "Papua New Guinea",
"Papua New Guinea", "Papua New Guinea", "Papua New Guinea", "Papua New Guinea",
"Papua New Guinea", "Papua New Guinea", "Papua New Guinea", "Papua New Guinea",
"Papua New Guinea", "Papua New Guinea", "Papua New Guinea", "Papua New Guinea",
"Papua New Guinea", "Papua New Guinea", "Papua New Guinea", "Paraguay",
"Paraguay", "Paraguay", "Paraguay", "Paraguay", "Paraguay", "Paraguay",
"Paraguay", "Paraguay", "Paraguay", "Paraguay", "Paraguay", "Paraguay",
"Paraguay", "Paraguay", "Paraguay", "Paraguay", "Paraguay", "Paraguay",
"Paraguay", "Paraguay", "Paraguay", "Paraguay", "Paraguay", "Paraguay",
"Paraguay", "Paraguay", "Paraguay", "Paraguay", "Paraguay", "Paraguay",
"Paraguay", "Paraguay", "Peru", "Peru", "Peru", "Peru", "Peru",
"Peru", "Peru", "Peru", "Peru", "Peru", "Peru", "Peru", "Peru",
"Peru", "Peru", "Peru", "Peru", "Peru", "Peru", "Peru", "Peru",
"Peru", "Peru", "Peru", "Peru", "Peru", "Peru", "Peru", "Peru",
"Peru", "Peru", "Peru", "Peru", "Peru", "Peru", "Philippines",
"Philippines", "Philippines", "Philippines", "Philippines", "Philippines",
"Philippines", "Philippines", "Philippines", "Philippines", "Philippines",
"Philippines", "Philippines", "Philippines", "Philippines", "Philippines",
"Philippines", "Philippines", "Philippines", "Philippines", "Philippines",
"Philippines", "Philippines", "Philippines", "Philippines", "Philippines",
"Philippines", "Philippines", "Philippines", "Philippines", "Philippines",
"Philippines", "Philippines", "Philippines", "Philippines", "Philippines",
"Poland", "Poland", "Poland", "Poland", "Poland", "Poland", "Poland",
"Poland", "Poland", "Poland", "Poland", "Poland", "Poland", "Poland",
"Poland", "Poland", "Poland", "Poland", "Poland", "Poland", "Poland",
"Poland", "Poland", "Poland", "Poland", "Poland", "Poland", "Poland",
"Poland", "Poland", "Poland", "Poland", "Poland", "Poland", "Poland",
"Poland", "Portugal", "Portugal", "Portugal", "Portugal", "Portugal",
"Portugal", "Portugal", "Portugal", "Portugal", "Portugal", "Portugal",
"Portugal", "Portugal", "Portugal", "Portugal", "Portugal", "Portugal",
"Portugal", "Portugal", "Portugal", "Portugal", "Portugal", "Portugal",
"Portugal", "Portugal", "Portugal", "Portugal", "Portugal", "Portugal",
"Portugal", "Portugal", "Portugal", "Portugal", "Portugal", "Puerto Rico",
"Puerto Rico", "Puerto Rico", "Puerto Rico", "Puerto Rico", "Puerto Rico",
"Puerto Rico", "Puerto Rico", "Puerto Rico", "Puerto Rico", "Puerto Rico",
"Puerto Rico", "Puerto Rico", "Puerto Rico", "Puerto Rico", "Puerto Rico",
"Qatar", "Qatar", "Qatar", "Qatar", "Qatar", "Qatar", "Qatar",
"Qatar", "Qatar", "Qatar", "Qatar", "Qatar", "Qatar", "Qatar",
"Qatar", "Qatar", "Qatar", "Qatar", "Qatar", "Qatar", "Qatar",
"Qatar", "Qatar", "Qatar", "Qatar", "Qatar", "Qatar", "Qatar",
"Qatar", "Qatar", "Qatar", "Qatar", "Qatar", "Qatar", "Qatar",
"Republic of Korea", "Republic of Korea", "Republic of Korea",
"Republic of Korea", "Republic of Korea", "Republic of Korea",
"Republic of Korea", "Republic of Korea", "Republic of Korea",
"Republic of Korea", "Republic of Korea", "Republic of Korea",
"Republic of Korea", "Republic of Korea", "Republic of Korea",
"Republic of Korea", "Republic of Korea", "Republic of Korea",
"Republic of Korea", "Republic of Korea", "Republic of Korea",
"Republic of Korea", "Republic of Korea", "Republic of Korea",
"Republic of Korea", "Republic of Korea", "Republic of Korea",
"Republic of Korea", "Republic of Korea", "Republic of Korea",
"Republic of Korea", "Republic of Korea", "Republic of Korea",
"Republic of Korea", "Republic of Korea", "Republic of Moldova",
"Republic of Moldova", "Republic of Moldova", "Republic of Moldova",
"Republic of Moldova", "Republic of Moldova", "Republic of Moldova",
"Republic of Moldova", "Republic of Moldova", "Republic of Moldova",
"Republic of Moldova", "Republic of Moldova", "Republic of Moldova",
"Republic of Moldova", "Republic of Moldova", "Republic of Moldova",
"Republic of Moldova", "Republic of Moldova", "Republic of Moldova",
"Republic of Moldova", "Republic of Moldova", "Republic of Moldova",
"Republic of Moldova", "Republic of Moldova", "Republic of Moldova",
"Republic of Moldova", "Republic of Moldova", "Republic of Moldova",
"Republic of Moldova", "Republic of Moldova", "Republic of Moldova",
"Republic of Moldova", "Republic of Moldova", "Republic of Moldova",
"Republic of Moldova", "Republic of Moldova", "R\xe9union", "R\xe9union",
"R\xe9union", "R\xe9union", "R\xe9union", "R\xe9union", "R\xe9union",
"R\xe9union", "R\xe9union", "R\xe9union", "R\xe9union", "R\xe9union",
"R\xe9union", "R\xe9union", "R\xe9union", "R\xe9union", "Romania",
"Romania", "Romania", "Romania", "Romania", "Romania", "Romania",
"Romania", "Romania", "Romania", "Romania", "Romania", "Romania",
"Romania", "Romania", "Romania", "Romania", "Romania", "Romania",
"Romania", "Romania", "Romania", "Romania", "Romania", "Romania",
"Romania", "Romania", "Romania", "Romania", "Romania", "Romania",
"Romania", "Romania", "Romania", "Romania", "Romania", "Russian Federation",
"Russian Federation", "Russian Federation", "Russian Federation",
"Russian Federation", "Russian Federation", "Russian Federation",
"Russian Federation", "Russian Federation", "Russian Federation",
"Russian Federation", "Russian Federation", "Russian Federation",
"Russian Federation", "Russian Federation", "Russian Federation",
"Russian Federation", "Russian Federation", "Russian Federation",
"Russian Federation", "Russian Federation", "Russian Federation",
"Russian Federation", "Russian Federation", "Russian Federation",
"Russian Federation", "Russian Federation", "Russian Federation",
"Russian Federation", "Russian Federation", "Russian Federation",
"Russian Federation", "Russian Federation", "Russian Federation",
"Russian Federation", "Russian Federation", "Rwanda", "Rwanda",
"Rwanda", "Rwanda", "Rwanda", "Rwanda", "Rwanda", "Rwanda", "Rwanda",
"Rwanda", "Rwanda", "Rwanda", "Rwanda", "Rwanda", "Rwanda", "Rwanda",
"Rwanda", "Rwanda", "Rwanda", "Rwanda", "Rwanda", "Rwanda", "Rwanda",
"Rwanda", "Rwanda", "Rwanda", "Rwanda", "Rwanda", "Rwanda", "Rwanda",
"Rwanda", "Rwanda", "Rwanda", "Rwanda", "Rwanda", "Rwanda", "Saint Helena",
"Saint Helena", "Saint Helena", "Saint Helena", "Saint Helena",
"Saint Helena", "Saint Helena", "Saint Helena", "Saint Kitts and Nevis",
"Saint Kitts and Nevis", "Saint Kitts and Nevis", "Saint Kitts and Nevis",
"Saint Kitts and Nevis", "Saint Kitts and Nevis", "Saint Kitts and Nevis",
"Saint Kitts and Nevis", "Saint Kitts and Nevis", "Saint Kitts and Nevis",
"Saint Kitts and Nevis", "Saint Kitts and Nevis", "Saint Kitts and Nevis",
"Saint Kitts and Nevis", "Saint Lucia", "Saint Lucia", "Saint Lucia",
"Saint Lucia", "Saint Lucia", "Saint Lucia", "Saint Lucia", "Saint Lucia",
"Saint Lucia", "Saint Lucia", "Saint Lucia", "Saint Lucia", "Saint Lucia",
"Saint Lucia", "Saint Lucia", "Saint Lucia", "Saint Lucia", "Saint Lucia",
"Saint Lucia", "Saint Lucia", "Saint Lucia", "Saint Lucia", "Saint Lucia",
"Saint Lucia", "Saint Lucia", "Saint Lucia", "Saint Pierre and Miquelon",
"Saint Pierre and Miquelon", "Saint Pierre and Miquelon", "Saint Pierre and Miquelon",
"Saint Pierre and Miquelon", "Saint Pierre and Miquelon", "Saint Pierre and Miquelon",
"Saint Pierre and Miquelon", "Saint Vincent & Grenadines", "Saint Vincent & Grenadines",
"Saint Vincent & Grenadines", "Saint Vincent & Grenadines", "Saint Vincent & Grenadines",
"Saint Vincent & Grenadines", "Saint Vincent & Grenadines", "Saint Vincent & Grenadines",
"Saint Vincent & Grenadines", "Saint Vincent & Grenadines", "Saint Vincent & Grenadines",
"Saint Vincent & Grenadines", "Saint Vincent & Grenadines", "Saint Vincent & Grenadines",
"Saint Vincent & Grenadines", "Saint Vincent & Grenadines", "Saint Vincent & Grenadines",
"Saint Vincent & Grenadines", "Saint Vincent & Grenadines", "Saint Vincent & Grenadines",
"Samoa", "Samoa", "Samoa", "Samoa", "Samoa", "Samoa", "Samoa",
"Samoa", "Samoa", "Samoa", "Samoa", "Samoa", "Samoa", "Samoa",
"Samoa", "Samoa", "Samoa", "Samoa", "Samoa", "Samoa", "San Marino",
"San Marino", "San Marino", "San Marino", "San Marino", "San Marino",
"San Marino", "San Marino", "Sao Tome and Principe", "Sao Tome and Principe",
"Sao Tome and Principe", "Sao Tome and Principe", "Sao Tome and Principe",
"Sao Tome and Principe", "Sao Tome and Principe", "Sao Tome and Principe",
"Sao Tome and Principe", "Sao Tome and Principe", "Sao Tome and Principe",
"Sao Tome and Principe", "Sao Tome and Principe", "Sao Tome and Principe",
"Sao Tome and Principe", "Sao Tome and Principe", "Saudi Arabia",
"Saudi Arabia", "Saudi Arabia", "Saudi Arabia", "Saudi Arabia",
"Saudi Arabia", "Saudi Arabia", "Saudi Arabia", "Saudi Arabia",
"Saudi Arabia", "Saudi Arabia", "Saudi Arabia", "Saudi Arabia",
"Saudi Arabia", "Saudi Arabia", "Saudi Arabia", "Saudi Arabia",
"Saudi Arabia", "Saudi Arabia", "Saudi Arabia", "Saudi Arabia",
"Saudi Arabia", "Saudi Arabia", "Saudi Arabia", "Saudi Arabia",
"Saudi Arabia", "Saudi Arabia", "Saudi Arabia", "Saudi Arabia",
"Saudi Arabia", "Saudi Arabia", "Saudi Arabia", "Saudi Arabia",
"Saudi Arabia", "Saudi Arabia", "Saudi Arabia", "Senegal", "Senegal",
"Senegal", "Senegal", "Senegal", "Senegal", "Senegal", "Senegal",
"Senegal", "Senegal", "Senegal", "Senegal", "Senegal", "Senegal",
"Senegal", "Senegal", "Senegal", "Senegal", "Senegal", "Senegal",
"Senegal", "Senegal", "Senegal", "Senegal", "Senegal", "Senegal",
"Senegal", "Senegal", "Senegal", "Senegal", "Senegal", "Senegal",
"Senegal", "Senegal", "Senegal", "Senegal", "Senegal", "Serbia",
"Serbia", "Serbia", "Serbia", "Serbia", "Serbia", "Serbia", "Serbia",
"Serbia", "Serbia", "Serbia", "Serbia", "Serbia", "Serbia", "Serbia",
"Serbia", "Serbia", "Serbia", "Serbia", "Serbia", "Serbia", "Serbia",
"Serbia", "Serbia", "Serbia", "Serbia", "Serbia", "Serbia", "Serbia",
"Serbia", "Serbia", "Serbia", "Serbia", "Serbia", "Serbia", "Serbia",
"Seychelles", "Seychelles", "Seychelles", "Seychelles", "Seychelles",
"Seychelles", "Seychelles", "Seychelles", "Seychelles", "Seychelles",
"Seychelles", "Seychelles", "Seychelles", "Seychelles", "Seychelles",
"Seychelles", "Seychelles", "Seychelles", "Sierra Leone", "Sierra Leone",
"Sierra Leone", "Sierra Leone", "Sierra Leone", "Sierra Leone",
"Sierra Leone", "Sierra Leone", "Sierra Leone", "Sierra Leone",
"Sierra Leone", "Sierra Leone", "Sierra Leone", "Sierra Leone",
"Sierra Leone", "Sierra Leone", "Sierra Leone", "Sierra Leone",
"Sierra Leone", "Sierra Leone", "Sierra Leone", "Sierra Leone",
"Sierra Leone", "Sierra Leone", "Sierra Leone", "Sierra Leone",
"Sierra Leone", "Sierra Leone", "Sierra Leone", "Sierra Leone",
"Sierra Leone", "Sierra Leone", "Sierra Leone", "Sierra Leone",
"Sierra Leone", "Singapore", "Singapore", "Singapore", "Singapore",
"Singapore", "Singapore", "Singapore", "Singapore", "Singapore",
"Singapore", "Singapore", "Singapore", "Singapore", "Singapore",
"Singapore", "Singapore", "Singapore", "Singapore", "Singapore",
"Singapore", "Singapore", "Singapore", "Singapore", "Singapore",
"Singapore", "Singapore", "Singapore", "Singapore", "Sint Maarten (Dutch part)",
"Sint Maarten (Dutch part)", "Sint Maarten (Dutch part)", "Sint Maarten (Dutch part)",
"Sint Maarten (Dutch part)", "Sint Maarten (Dutch part)", "Sint Maarten (Dutch part)",
"Sint Maarten (Dutch part)", "Sint Maarten (Dutch part)", "Sint Maarten (Dutch part)",
"Sint Maarten (Dutch part)", "Sint Maarten (Dutch part)", "Sint Maarten (Dutch part)",
"Sint Maarten (Dutch part)", "Sint Maarten (Dutch part)", "Sint Maarten (Dutch part)",
"Sint Maarten (Dutch part)", "Sint Maarten (Dutch part)", "Sint Maarten (Dutch part)",
"Sint Maarten (Dutch part)", "Slovakia", "Slovakia", "Slovakia",
"Slovakia", "Slovakia", "Slovakia", "Slovakia", "Slovakia", "Slovakia",
"Slovakia", "Slovakia", "Slovakia", "Slovakia", "Slovakia", "Slovakia",
"Slovakia", "Slovakia", "Slovakia", "Slovakia", "Slovakia", "Slovakia",
"Slovakia", "Slovakia", "Slovakia", "Slovakia", "Slovakia", "Slovakia",
"Slovakia", "Slovakia", "Slovakia", "Slovakia", "Slovakia", "Slovakia",
"Slovakia", "Slovakia", "Slovenia", "Slovenia", "Slovenia", "Slovenia",
"Slovenia", "Slovenia", "Slovenia", "Slovenia", "Slovenia", "Slovenia",
"Slovenia", "Slovenia", "Slovenia", "Slovenia", "Slovenia", "Slovenia",
"Slovenia", "Slovenia", "Slovenia", "Slovenia", "Slovenia", "Slovenia",
"Slovenia", "Slovenia", "Slovenia", "Slovenia", "Slovenia", "Slovenia",
"Slovenia", "Slovenia", "Slovenia", "Slovenia", "Slovenia", "Slovenia",
"Slovenia", "Slovenia", "Slovenia", "Slovenia", "Slovenia", "Solomon Islands",
"Solomon Islands", "Solomon Islands", "Solomon Islands", "Solomon Islands",
"Solomon Islands", "Solomon Islands", "Solomon Islands", "Solomon Islands",
"Solomon Islands", "Solomon Islands", "Solomon Islands", "Solomon Islands",
"Solomon Islands", "Solomon Islands", "Solomon Islands", "Solomon Islands",
"Solomon Islands", "Solomon Islands", "Solomon Islands", "Solomon Islands",
"Solomon Islands", "Somalia", "Somalia", "Somalia", "Somalia",
"Somalia", "Somalia", "Somalia", "Somalia", "Somalia", "Somalia",
"Somalia", "Somalia", "Somalia", "Somalia", "Somalia", "Somalia",
"Somalia", "Somalia", "Somalia", "Somalia", "Somalia", "Somalia",
"Somalia", "Somalia", "Somalia", "Somalia", "Somalia", "Somalia",
"Somalia", "Somalia", "Somalia", "Somalia", "Somalia", "Somalia",
"Somalia", "Somalia", "South Africa", "South Africa", "South Africa",
"South Africa", "South Africa", "South Africa", "South Africa",
"South Africa", "South Africa", "South Africa", "South Africa",
"South Africa", "South Africa", "South Africa", "South Africa",
"South Africa", "South Africa", "South Africa", "South Africa",
"South Africa", "South Africa", "South Africa", "South Africa",
"South Africa", "South Africa", "South Africa", "South Africa",
"South Africa", "South Africa", "South Africa", "South Africa",
"South Africa", "South Africa", "South Sudan", "South Sudan",
"South Sudan", "South Sudan", "South Sudan", "South Sudan", "South Sudan",
"South Sudan", "South Sudan", "South Sudan", "South Sudan", "South Sudan",
"South Sudan", "South Sudan", "South Sudan", "South Sudan", "South Sudan",
"South Sudan", "South Sudan", "South Sudan", "South Sudan", "South Sudan",
"South Sudan", "South Sudan", "Spain", "Spain", "Spain", "Spain",
"Spain", "Spain", "Spain", "Spain", "Spain", "Spain", "Spain",
"Spain", "Spain", "Spain", "Spain", "Spain", "Spain", "Spain",
"Spain", "Spain", "Spain", "Spain", "Spain", "Spain", "Spain",
"Spain", "Spain", "Spain", "Spain", "Spain", "Spain", "Spain",
"Spain", "Spain", "Spain", "Sri Lanka", "Sri Lanka", "Sri Lanka",
"Sri Lanka", "Sri Lanka", "Sri Lanka", "Sri Lanka", "Sri Lanka",
"Sri Lanka", "Sri Lanka", "Sri Lanka", "Sri Lanka", "Sri Lanka",
"Sri Lanka", "Sri Lanka", "Sri Lanka", "Sri Lanka", "Sri Lanka",
"Sri Lanka", "Sri Lanka", "Sri Lanka", "Sri Lanka", "Sri Lanka",
"Sri Lanka", "Sri Lanka", "Sri Lanka", "Sri Lanka", "Sri Lanka",
"Sri Lanka", "Sri Lanka", "Sri Lanka", "Sri Lanka", "Sri Lanka",
"Sri Lanka", "Sri Lanka", "Sri Lanka", "State of Palestine",
"State of Palestine", "State of Palestine", "State of Palestine",
"State of Palestine", "State of Palestine", "State of Palestine",
"State of Palestine", "State of Palestine", "State of Palestine",
"State of Palestine", "State of Palestine", "State of Palestine",
"State of Palestine", "State of Palestine", "State of Palestine",
"State of Palestine", "State of Palestine", "Sudan", "Sudan",
"Sudan", "Sudan", "Sudan", "Sudan", "Sudan", "Sudan", "Sudan",
"Sudan", "Sudan", "Sudan", "Sudan", "Sudan", "Sudan", "Sudan",
"Sudan", "Sudan", "Sudan", "Sudan", "Sudan", "Sudan", "Sudan",
"Sudan", "Sudan", "Sudan", "Sudan", "Sudan", "Sudan", "Sudan",
"Sudan", "Sudan", "Sudan", "Sudan", "Sudan", "Sudan", "Suriname",
"Suriname", "Suriname", "Suriname", "Suriname", "Suriname", "Suriname",
"Suriname", "Suriname", "Suriname", "Suriname", "Suriname", "Suriname",
"Suriname", "Suriname", "Suriname", "Suriname", "Suriname", "Suriname",
"Suriname", "Suriname", "Suriname", "Suriname", "Suriname", "Suriname",
"Suriname", "Suriname", "Suriname", "Suriname", "Suriname", "Suriname",
"Sweden", "Sweden", "Sweden", "Sweden", "Sweden", "Sweden", "Sweden",
"Sweden", "Sweden", "Sweden", "Sweden", "Sweden", "Sweden", "Sweden",
"Sweden", "Sweden", "Sweden", "Sweden", "Sweden", "Sweden", "Sweden",
"Sweden", "Sweden", "Sweden", "Sweden", "Sweden", "Sweden", "Sweden",
"Sweden", "Sweden", "Sweden", "Sweden", "Sweden", "Sweden", "Sweden",
"Sweden", "Switzerland", "Switzerland", "Switzerland", "Switzerland",
"Switzerland", "Switzerland", "Switzerland", "Switzerland", "Switzerland",
"Switzerland", "Switzerland", "Switzerland", "Switzerland", "Switzerland",
"Switzerland", "Switzerland", "Switzerland", "Switzerland", "Switzerland",
"Switzerland", "Switzerland", "Switzerland", "Switzerland", "Switzerland",
"Switzerland", "Switzerland", "Switzerland", "Switzerland", "Switzerland",
"Switzerland", "Switzerland", "Switzerland", "Switzerland", "Switzerland",
"Switzerland", "Syrian Arab Republic", "Syrian Arab Republic",
"Syrian Arab Republic", "Syrian Arab Republic", "Syrian Arab Republic",
"Syrian Arab Republic", "Syrian Arab Republic", "Syrian Arab Republic",
"Syrian Arab Republic", "Syrian Arab Republic", "Syrian Arab Republic",
"Syrian Arab Republic", "Syrian Arab Republic", "Syrian Arab Republic",
"Syrian Arab Republic", "Syrian Arab Republic", "Syrian Arab Republic",
"Syrian Arab Republic", "Syrian Arab Republic", "Syrian Arab Republic",
"Syrian Arab Republic", "Syrian Arab Republic", "Syrian Arab Republic",
"Syrian Arab Republic", "Syrian Arab Republic", "Syrian Arab Republic",
"Syrian Arab Republic", "Syrian Arab Republic", "Syrian Arab Republic",
"Syrian Arab Republic", "Syrian Arab Republic", "Syrian Arab Republic",
"Syrian Arab Republic", "Syrian Arab Republic", "Syrian Arab Republic",
"Syrian Arab Republic", "Tajikistan", "Tajikistan", "Tajikistan",
"Tajikistan", "Tajikistan", "Tajikistan", "Tajikistan", "Tajikistan",
"Tajikistan", "Tajikistan", "Tajikistan", "Tajikistan", "Tajikistan",
"Tajikistan", "Tajikistan", "Tajikistan", "Tajikistan", "Tajikistan",
"Tajikistan", "Tajikistan", "Tajikistan", "Tajikistan", "Tajikistan",
"Tajikistan", "Tajikistan", "Tajikistan", "Tajikistan", "Tajikistan",
"Tajikistan", "Tajikistan", "Tajikistan", "Tajikistan", "Tajikistan",
"Tajikistan", "Tajikistan", "Tajikistan", "Thailand", "Thailand",
"Thailand", "Thailand", "Thailand", "Thailand", "Thailand", "Thailand",
"Thailand", "Thailand", "Thailand", "Thailand", "Thailand", "Thailand",
"Thailand", "Thailand", "Thailand", "Thailand", "Thailand", "Thailand",
"Thailand", "Thailand", "Thailand", "Thailand", "Thailand", "Thailand",
"Thailand", "Thailand", "Thailand", "Thailand", "Thailand", "Thailand",
"Thailand", "Thailand", "Thailand", "Thailand", "Timor-Leste",
"Timor-Leste", "Timor-Leste", "Timor-Leste", "Timor-Leste", "Timor-Leste",
"Timor-Leste", "Timor-Leste", "Timor-Leste", "Timor-Leste", "Timor-Leste",
"Timor-Leste", "Timor-Leste", "Timor-Leste", "Timor-Leste", "Timor-Leste",
"Timor-Leste", "Timor-Leste", "Timor-Leste", "Timor-Leste", "Timor-Leste",
"Timor-Leste", "Timor-Leste", "Timor-Leste", "Timor-Leste", "Timor-Leste",
"Togo", "Togo", "Togo", "Togo", "Togo", "Togo", "Togo", "Togo",
"Togo", "Togo", "Togo", "Togo", "Togo", "Togo", "Togo", "Togo",
"Togo", "Togo", "Togo", "Togo", "Togo", "Togo", "Togo", "Togo",
"Togo", "Togo", "Togo", "Togo", "Togo", "Togo", "Togo", "Togo",
"Togo", "Togo", "Togo", "Togo", "Togo", "Tokelau", "Tokelau",
"Tokelau", "Tokelau", "Tokelau", "Tokelau", "Tokelau", "Tokelau",
"Tonga", "Tonga", "Tonga", "Tonga", "Tonga", "Tonga", "Tonga",
"Tonga", "Tonga", "Tonga", "Tonga", "Tonga", "Tonga", "Tonga",
"Tonga", "Tonga", "Tonga", "Tonga", "Tonga", "Tonga", "Trinidad and Tobago",
"Trinidad and Tobago", "Trinidad and Tobago", "Trinidad and Tobago",
"Trinidad and Tobago", "Trinidad and Tobago", "Trinidad and Tobago",
"Trinidad and Tobago", "Trinidad and Tobago", "Trinidad and Tobago",
"Trinidad and Tobago", "Trinidad and Tobago", "Trinidad and Tobago",
"Trinidad and Tobago", "Trinidad and Tobago", "Trinidad and Tobago",
"Trinidad and Tobago", "Trinidad and Tobago", "Trinidad and Tobago",
"Trinidad and Tobago", "Trinidad and Tobago", "Trinidad and Tobago",
"Trinidad and Tobago", "Trinidad and Tobago", "Trinidad and Tobago",
"Trinidad and Tobago", "Trinidad and Tobago", "Trinidad and Tobago",
"Trinidad and Tobago", "Trinidad and Tobago", "Tunisia", "Tunisia",
"Tunisia", "Tunisia", "Tunisia", "Tunisia", "Tunisia", "Tunisia",
"Tunisia", "Tunisia", "Tunisia", "Tunisia", "Tunisia", "Tunisia",
"Tunisia", "Tunisia", "Tunisia", "Tunisia", "Tunisia", "Tunisia",
"Tunisia", "Tunisia", "Tunisia", "Tunisia", "Tunisia", "Tunisia",
"Tunisia", "Tunisia", "Tunisia", "Tunisia", "Tunisia", "Tunisia",
"Tunisia", "Tunisia", "Tunisia", "T\xfcrkiye", "T\xfcrkiye",
"T\xfcrkiye", "T\xfcrkiye", "T\xfcrkiye", "T\xfcrkiye", "T\xfcrkiye",
"T\xfcrkiye", "T\xfcrkiye", "T\xfcrkiye", "T\xfcrkiye", "T\xfcrkiye",
"T\xfcrkiye", "T\xfcrkiye", "T\xfcrkiye", "T\xfcrkiye", "T\xfcrkiye",
"T\xfcrkiye", "T\xfcrkiye", "T\xfcrkiye", "T\xfcrkiye", "T\xfcrkiye",
"T\xfcrkiye", "T\xfcrkiye", "T\xfcrkiye", "T\xfcrkiye", "T\xfcrkiye",
"T\xfcrkiye", "T\xfcrkiye", "T\xfcrkiye", "T\xfcrkiye", "T\xfcrkiye",
"T\xfcrkiye", "T\xfcrkiye", "T\xfcrkiye", "T\xfcrkiye", "Turkmenistan",
"Turkmenistan", "Turkmenistan", "Turkmenistan", "Turkmenistan",
"Turkmenistan", "Turkmenistan", "Turkmenistan", "Turkmenistan",
"Turkmenistan", "Turkmenistan", "Turkmenistan", "Turkmenistan",
"Turkmenistan", "Turkmenistan", "Turkmenistan", "Turkmenistan",
"Turkmenistan", "Turkmenistan", "Turkmenistan", "Turkmenistan",
"Turkmenistan", "Turkmenistan", "Turkmenistan", "Turkmenistan",
"Turkmenistan", "Turkmenistan", "Turkmenistan", "Turkmenistan",
"Turkmenistan", "Turkmenistan", "Turkmenistan", "Turks and Caicos Islands",
"Turks and Caicos Islands", "Turks and Caicos Islands", "Turks and Caicos Islands",
"Turks and Caicos Islands", "Turks and Caicos Islands", "Turks and Caicos Islands",
"Turks and Caicos Islands", "Turks and Caicos Islands", "Turks and Caicos Islands",
"Turks and Caicos Islands", "Turks and Caicos Islands", "Turks and Caicos Islands",
"Turks and Caicos Islands", "Turks and Caicos Islands", "Turks and Caicos Islands",
"Turks and Caicos Islands", "Turks and Caicos Islands", "Turks and Caicos Islands",
"Tuvalu", "Tuvalu", "Tuvalu", "Tuvalu", "Tuvalu", "Tuvalu", "Tuvalu",
"Tuvalu", "Uganda", "Uganda", "Uganda", "Uganda", "Uganda", "Uganda",
"Uganda", "Uganda", "Uganda", "Uganda", "Uganda", "Uganda", "Uganda",
"Uganda", "Uganda", "Uganda", "Uganda", "Uganda", "Uganda", "Uganda",
"Uganda", "Uganda", "Uganda", "Uganda", "Uganda", "Uganda", "Uganda",
"Uganda", "Uganda", "Uganda", "Uganda", "Uganda", "Uganda", "Uganda",
"Uganda", "Uganda", "Ukraine", "Ukraine", "Ukraine", "Ukraine",
"Ukraine", "Ukraine", "Ukraine", "Ukraine", "Ukraine", "Ukraine",
"Ukraine", "Ukraine", "Ukraine", "Ukraine", "Ukraine", "Ukraine",
"Ukraine", "Ukraine", "Ukraine", "Ukraine", "Ukraine", "Ukraine",
"Ukraine", "Ukraine", "Ukraine", "Ukraine", "Ukraine", "Ukraine",
"Ukraine", "Ukraine", "Ukraine", "Ukraine", "Ukraine", "Ukraine",
"Ukraine", "Ukraine", "United Arab Emirates", "United Arab Emirates",
"United Arab Emirates", "United Arab Emirates", "United Arab Emirates",
"United Arab Emirates", "United Arab Emirates", "United Arab Emirates",
"United Arab Emirates", "United Arab Emirates", "United Arab Emirates",
"United Arab Emirates", "United Arab Emirates", "United Arab Emirates",
"United Arab Emirates", "United Arab Emirates", "United Arab Emirates",
"United Arab Emirates", "United Arab Emirates", "United Arab Emirates",
"United Arab Emirates", "United Arab Emirates", "United Arab Emirates",
"United Arab Emirates", "United Arab Emirates", "United Arab Emirates",
"United Arab Emirates", "United Arab Emirates", "United Arab Emirates",
"United Arab Emirates", "United Arab Emirates", "United Arab Emirates",
"United Arab Emirates", "United Kingdom", "United Kingdom", "United Kingdom",
"United Kingdom", "United Kingdom", "United Kingdom", "United Kingdom",
"United Kingdom", "United Kingdom", "United Kingdom", "United Kingdom",
"United Kingdom", "United Kingdom", "United Kingdom", "United Kingdom",
"United Kingdom", "United Kingdom", "United Kingdom", "United Kingdom",
"United Kingdom", "United Kingdom", "United Kingdom", "United Kingdom",
"United Kingdom", "United Kingdom", "United Kingdom", "United Kingdom",
"United Kingdom", "United Kingdom", "United Kingdom", "United Kingdom",
"United Kingdom", "United Kingdom", "United Kingdom", "United Kingdom",
"United Kingdom", "United Rep. of Tanzania", "United Rep. of Tanzania",
"United Rep. of Tanzania", "United Rep. of Tanzania", "United Rep. of Tanzania",
"United Rep. of Tanzania", "United Rep. of Tanzania", "United Rep. of Tanzania",
"United Rep. of Tanzania", "United Rep. of Tanzania", "United Rep. of Tanzania",
"United Rep. of Tanzania", "United Rep. of Tanzania", "United Rep. of Tanzania",
"United Rep. of Tanzania", "United Rep. of Tanzania", "United Rep. of Tanzania",
"United Rep. of Tanzania", "United Rep. of Tanzania", "United Rep. of Tanzania",
"United Rep. of Tanzania", "United Rep. of Tanzania", "United Rep. of Tanzania",
"United Rep. of Tanzania", "United Rep. of Tanzania", "United Rep. of Tanzania",
"United Rep. of Tanzania", "United Rep. of Tanzania", "United Rep. of Tanzania",
"United Rep. of Tanzania", "United Rep. of Tanzania", "United Rep. of Tanzania",
"United Rep. of Tanzania", "United Rep. of Tanzania", "United Rep. of Tanzania",
"United Rep. of Tanzania", "United States of America", "United States of America",
"United States of America", "United States of America", "United States of America",
"United States of America", "United States of America", "United States of America",
"United States of America", "United States of America", "United States of America",
"United States of America", "United States of America", "United States of America",
"United States of America", "United States of America", "United States of America",
"United States of America", "United States of America", "United States of America",
"United States of America", "United States of America", "United States of America",
"United States of America", "United States of America", "United States of America",
"United States of America", "United States of America", "United States of America",
"United States of America", "United States of America", "United States of America",
"United States Virgin Islands", "United States Virgin Islands",
"United States Virgin Islands", "United States Virgin Islands",
"United States Virgin Islands", "United States Virgin Islands",
"United States Virgin Islands", "United States Virgin Islands",
"United States Virgin Islands", "United States Virgin Islands",
"United States Virgin Islands", "United States Virgin Islands",
"United States Virgin Islands", "United States Virgin Islands",
"United States Virgin Islands", "United States Virgin Islands",
"Uruguay", "Uruguay", "Uruguay", "Uruguay", "Uruguay", "Uruguay",
"Uruguay", "Uruguay", "Uruguay", "Uruguay", "Uruguay", "Uruguay",
"Uruguay", "Uruguay", "Uruguay", "Uruguay", "Uruguay", "Uruguay",
"Uruguay", "Uruguay", "Uruguay", "Uruguay", "Uruguay", "Uruguay",
"Uruguay", "Uruguay", "Uruguay", "Uruguay", "Uruguay", "Uruguay",
"Uruguay", "Uruguay", "Uruguay", "Uzbekistan", "Uzbekistan",
"Uzbekistan", "Uzbekistan", "Uzbekistan", "Uzbekistan", "Uzbekistan",
"Uzbekistan", "Uzbekistan", "Uzbekistan", "Uzbekistan", "Uzbekistan",
"Uzbekistan", "Uzbekistan", "Uzbekistan", "Uzbekistan", "Uzbekistan",
"Uzbekistan", "Uzbekistan", "Uzbekistan", "Uzbekistan", "Uzbekistan",
"Uzbekistan", "Uzbekistan", "Uzbekistan", "Uzbekistan", "Uzbekistan",
"Uzbekistan", "Uzbekistan", "Uzbekistan", "Uzbekistan", "Uzbekistan",
"Vanuatu", "Vanuatu", "Vanuatu", "Vanuatu", "Vanuatu", "Vanuatu",
"Vanuatu", "Vanuatu", "Vanuatu", "Vanuatu", "Vanuatu", "Vanuatu",
"Vanuatu", "Vanuatu", "Vanuatu", "Vanuatu", "Vanuatu", "Vanuatu",
"Vanuatu", "Vanuatu", "Vanuatu", "Vanuatu", "Venezuela (Boliv. Rep. of)",
"Venezuela (Boliv. Rep. of)", "Venezuela (Boliv. Rep. of)", "Venezuela (Boliv. Rep. of)",
"Venezuela (Boliv. Rep. of)", "Venezuela (Boliv. Rep. of)", "Venezuela (Boliv. Rep. of)",
"Venezuela (Boliv. Rep. of)", "Venezuela (Boliv. Rep. of)", "Venezuela (Boliv. Rep. of)",
"Venezuela (Boliv. Rep. of)", "Venezuela (Boliv. Rep. of)", "Venezuela (Boliv. Rep. of)",
"Venezuela (Boliv. Rep. of)", "Venezuela (Boliv. Rep. of)", "Venezuela (Boliv. Rep. of)",
"Venezuela (Boliv. Rep. of)", "Venezuela (Boliv. Rep. of)", "Venezuela (Boliv. Rep. of)",
"Venezuela (Boliv. Rep. of)", "Venezuela (Boliv. Rep. of)", "Venezuela (Boliv. Rep. of)",
"Venezuela (Boliv. Rep. of)", "Venezuela (Boliv. Rep. of)", "Venezuela (Boliv. Rep. of)",
"Venezuela (Boliv. Rep. of)", "Venezuela (Boliv. Rep. of)", "Venezuela (Boliv. Rep. of)",
"Venezuela (Boliv. Rep. of)", "Venezuela (Boliv. Rep. of)", "Venezuela (Boliv. Rep. of)",
"Venezuela (Boliv. Rep. of)", "Venezuela (Boliv. Rep. of)", "Venezuela (Boliv. Rep. of)",
"Viet Nam", "Viet Nam", "Viet Nam", "Viet Nam", "Viet Nam", "Viet Nam",
"Viet Nam", "Viet Nam", "Viet Nam", "Viet Nam", "Viet Nam", "Viet Nam",
"Viet Nam", "Viet Nam", "Viet Nam", "Viet Nam", "Viet Nam", "Viet Nam",
"Viet Nam", "Viet Nam", "Viet Nam", "Viet Nam", "Viet Nam", "Viet Nam",
"Viet Nam", "Viet Nam", "Viet Nam", "Viet Nam", "Viet Nam", "Wallis and Futuna Islands",
"Wallis and Futuna Islands", "Wallis and Futuna Islands", "Wallis and Futuna Islands",
"Wallis and Futuna Islands", "Wallis and Futuna Islands", "Wallis and Futuna Islands",
"Wallis and Futuna Islands", "Western Sahara", "Western Sahara",
"Western Sahara", "Western Sahara", "Western Sahara", "Western Sahara",
"Western Sahara", "Western Sahara", "Western Sahara", "Western Sahara",
"Western Sahara", "Western Sahara", "Western Sahara", "Western Sahara",
"Western Sahara", "Western Sahara", "Yemen", "Yemen", "Yemen",
"Yemen", "Yemen", "Yemen", "Yemen", "Yemen", "Yemen", "Yemen",
"Yemen", "Yemen", "Yemen", "Yemen", "Yemen", "Yemen", "Yemen",
"Yemen", "Yemen", "Yemen", "Yemen", "Yemen", "Yemen", "Yemen",
"Yemen", "Yemen", "Yemen", "Yemen", "Yemen", "Yemen", "Yemen",
"Yemen", "Yemen", "Yemen", "Yemen", "Yemen", "Zambia", "Zambia",
"Zambia", "Zambia", "Zambia", "Zambia", "Zambia", "Zambia", "Zambia",
"Zambia", "Zambia", "Zambia", "Zambia", "Zambia", "Zambia", "Zambia",
"Zambia", "Zambia", "Zambia", "Zambia", "Zambia", "Zambia", "Zambia",
"Zambia", "Zambia", "Zambia", "Zambia", "Zambia", "Zambia", "Zambia",
"Zambia", "Zambia", "Zambia", "Zambia", "Zambia", "Zambia", "Zimbabwe",
"Zimbabwe", "Zimbabwe", "Zimbabwe", "Zimbabwe", "Zimbabwe", "Zimbabwe",
"Zimbabwe", "Zimbabwe", "Zimbabwe", "Zimbabwe", "Zimbabwe", "Zimbabwe",
"Zimbabwe", "Zimbabwe", "Zimbabwe", "Zimbabwe", "Zimbabwe", "Zimbabwe",
"Zimbabwe", "Zimbabwe", "Zimbabwe", "Zimbabwe", "Zimbabwe", "Zimbabwe",
"Zimbabwe", "Zimbabwe", "Zimbabwe", "Zimbabwe", "Zimbabwe", "Zimbabwe",
"Zimbabwe", "Zimbabwe", "Zimbabwe", "Zimbabwe"), ISO2C = c("AF",
"AF", "AF", "AF", "AF", "AF", "AF", "AF", "AF", "AF", "AF", "AF",
"AF", "AF", "AF", "AF", "AF", "AF", "AF", "AF", "AF", "AF", "AF",
"AF", "AF", "AF", "AF", "AF", "AF", "AF", "AF", "AF", "AF", "AF",
"AF", "AF", "AL", "AL", "AL", "AL", "AL", "AL", "AL", "AL", "AL",
"AL", "AL", "AL", "AL", "AL", "AL", "AL", "AL", "AL", "AL", "AL",
"AL", "AL", "AL", "AL", "AL", "AL", "AL", "AL", "AL", "AL", "AL",
"AL", "AL", "AL", "AL", "DZ", "DZ", "DZ", "DZ", "DZ", "DZ", "DZ",
"DZ", "DZ", "DZ", "DZ", "DZ", "DZ", "DZ", "DZ", "DZ", "DZ", "DZ",
"DZ", "DZ", "DZ", "DZ", "DZ", "DZ", "DZ", "DZ", "DZ", "DZ", "DZ",
"DZ", "DZ", "AS", "AS", "AS", "AS", "AS", "AS", "AS", "AS", "AD",
"AD", "AD", "AD", "AD", "AD", "AD", "AD", "AO", "AO", "AO", "AO",
"AO", "AO", "AO", "AO", "AO", "AO", "AO", "AO", "AO", "AO", "AO",
"AO", "AO", "AO", "AO", "AO", "AO", "AO", "AO", "AO", "AO", "AO",
"AO", "AO", "AO", "AO", "AO", "AO", "AO", "AO", "AO", "AI", "AI",
"AI", "AI", "AI", "AI", "AI", "AI", "AI", "AI", "AI", "AI", "AI",
"AI", "AG", "AG", "AG", "AG", "AG", "AG", "AG", "AG", "AG", "AG",
"AG", "AG", "AG", "AG", "AG", "AG", "AG", "AG", "AG", "AG", "AG",
"AG", "AG", "AR", "AR", "AR", "AR", "AR", "AR", "AR", "AR", "AR",
"AR", "AR", "AR", "AR", "AR", "AR", "AR", "AR", "AR", "AR", "AR",
"AR", "AR", "AR", "AR", "AR", "AR", "AR", "AR", "AR", "AR", "AR",
"AR", "AR", "AR", "AM", "AM", "AM", "AM", "AM", "AM", "AM", "AM",
"AM", "AM", "AM", "AM", "AM", "AM", "AM", "AM", "AM", "AM", "AM",
"AM", "AM", "AM", "AM", "AM", "AM", "AM", "AM", "AM", "AM", "AM",
"AM", "AM", "AM", "AM", "AM", "AW", "AW", "AW", "AW", "AW", "AW",
"AW", "AW", "AW", "AW", "AW", "AW", "AW", "AW", "AW", "AW", "AW",
"AW", "AW", "AW", "AW", "AW", "AW", "AW", "AW", "AW", "AW", "AW",
"AW", "AW", "AU", "AU", "AU", "AU", "AU", "AU", "AU", "AU", "AU",
"AU", "AU", "AU", "AU", "AU", "AU", "AU", "AU", "AU", "AU", "AU",
"AU", "AU", "AU", "AU", "AU", "AU", "AU", "AU", "AU", "AU", "AU",
"AU", "AU", "AU", "AT", "AT", "AT", "AT", "AT", "AT", "AT", "AT",
"AT", "AT", "AT", "AT", "AT", "AT", "AT", "AT", "AT", "AT", "AT",
"AT", "AT", "AT", "AT", "AT", "AT", "AT", "AT", "AT", "AT", "AT",
"AT", "AT", "AT", "AT", "AT", "AT", "AZ", "AZ", "AZ", "AZ", "AZ",
"AZ", "AZ", "AZ", "AZ", "AZ", "AZ", "AZ", "AZ", "AZ", "AZ", "AZ",
"AZ", "AZ", "AZ", "AZ", "AZ", "AZ", "AZ", "AZ", "AZ", "AZ", "AZ",
"AZ", "AZ", "AZ", "AZ", "AZ", "AZ", "AZ", "AZ", "AZ", "BS", "BS",
"BS", "BS", "BS", "BS", "BS", "BS", "BS", "BS", "BS", "BS", "BS",
"BS", "BS", "BS", "BS", "BS", "BS", "BS", "BS", "BS", "BS", "BS",
"BS", "BS", "BS", "BS", "BS", "BS", "BS", "BS", "BS", "BS", "BS",
"BH", "BH", "BH", "BH", "BH", "BH", "BH", "BH", "BH", "BH", "BH",
"BH", "BH", "BH", "BH", "BH", "BH", "BH", "BH", "BH", "BH", "BH",
"BH", "BH", "BH", "BH", "BH", "BH", "BH", "BH", "BD", "BD", "BD",
"BD", "BD", "BD", "BD", "BD", "BD", "BD", "BD", "BD", "BD", "BD",
"BD", "BD", "BD", "BD", "BD", "BD", "BD", "BD", "BD", "BD", "BD",
"BD", "BD", "BD", "BD", "BD", "BD", "BD", "BB", "BB", "BB", "BB",
"BB", "BB", "BB", "BB", "BB", "BB", "BB", "BB", "BB", "BB", "BB",
"BB", "BB", "BB", "BB", "BB", "BB", "BB", "BB", "BB", "BB", "BY",
"BY", "BY", "BY", "BY", "BY", "BY", "BY", "BY", "BY", "BY", "BY",
"BY", "BY", "BY", "BY", "BY", "BY", "BY", "BY", "BY", "BY", "BY",
"BY", "BY", "BY", "BY", "BY", "BY", "BY", "BY", "BY", "BY", "BY",
"BY", "BY", "BE", "BE", "BE", "BE", "BE", "BE", "BE", "BE", "BE",
"BE", "BE", "BE", "BE", "BE", "BE", "BE", "BE", "BE", "BE", "BE",
"BE", "BE", "BE", "BE", "BE", "BE", "BE", "BE", "BE", "BE", "BE",
"BE", "BE", "BE", "BE", "BE", "BZ", "BZ", "BZ", "BZ", "BZ", "BZ",
"BZ", "BZ", "BZ", "BZ", "BZ", "BZ", "BZ", "BZ", "BZ", "BZ", "BZ",
"BZ", "BZ", "BZ", "BZ", "BZ", "BZ", "BZ", "BZ", "BZ", "BZ", "BZ",
"BZ", "BZ", "BZ", "BZ", "BZ", "BJ", "BJ", "BJ", "BJ", "BJ", "BJ",
"BJ", "BJ", "BJ", "BJ", "BJ", "BJ", "BJ", "BJ", "BJ", "BJ", "BJ",
"BJ", "BJ", "BJ", "BJ", "BJ", "BJ", "BJ", "BJ", "BJ", "BJ", "BJ",
"BJ", "BJ", "BJ", "BJ", "BJ", "BM", "BM", "BM", "BM", "BM", "BM",
"BM", "BM", "BT", "BT", "BT", "BT", "BT", "BT", "BT", "BT", "BT",
"BT", "BT", "BT", "BT", "BT", "BT", "BT", "BO", "BO", "BO", "BO",
"BO", "BO", "BO", "BO", "BO", "BO", "BO", "BO", "BO", "BO", "BO",
"BO", "BO", "BO", "BO", "BO", "BO", "BO", "BO", "BO", "BO", "BO",
"BO", "BO", "BO", "BO", "BO", "BO", "BO", "BO", "BO", "BQ", "BQ",
"BQ", "BQ", "BQ", "BQ", "BQ", "BQ", "BQ", "BQ", "BA", "BA", "BA",
"BA", "BA", "BA", "BA", "BA", "BA", "BA", "BA", "BA", "BA", "BA",
"BA", "BA", "BA", "BA", "BA", "BA", "BA", "BA", "BA", "BA", "BA",
"BA", "BA", "BA", "BA", "BA", "BA", "BA", "BA", "BA", "BA", "BA",
"BW", "BW", "BW", "BW", "BW", "BW", "BW", "BW", "BW", "BW", "BW",
"BW", "BW", "BW", "BW", "BW", "BW", "BW", "BW", "BW", "BW", "BW",
"BW", "BW", "BW", "BW", "BW", "BW", "BW", "BW", "BW", "BW", "BW",
"BW", "BW", "BR", "BR", "BR", "BR", "BR", "BR", "BR", "BR", "BR",
"BR", "BR", "BR", "BR", "BR", "BR", "BR", "BR", "BR", "BR", "BR",
"BR", "BR", "BR", "BR", "BR", "BR", "BR", "BR", "BR", "BR", "BR",
"BR", "BR", "BR", "BR", "BR", "VG", "VG", "VG", "VG", "VG", "VG",
"VG", "VG", "VG", "VG", "VG", "VG", "VG", "VG", "VG", "VG", "VG",
"VG", "BN", "BN", "BN", "BN", "BN", "BN", "BN", "BN", "BN", "BN",
"BN", "BN", "BN", "BN", "BN", "BN", "BN", "BN", "BN", "BN", "BN",
"BN", "BN", "BN", "BG", "BG", "BG", "BG", "BG", "BG", "BG", "BG",
"BG", "BG", "BG", "BG", "BG", "BG", "BG", "BG", "BG", "BG", "BG",
"BG", "BG", "BG", "BG", "BG", "BG", "BG", "BG", "BG", "BG", "BG",
"BG", "BG", "BG", "BG", "BF", "BF", "BF", "BF", "BF", "BF", "BF",
"BF", "BF", "BF", "BF", "BF", "BF", "BF", "BF", "BF", "BF", "BF",
"BF", "BF", "BF", "BF", "BF", "BF", "BF", "BF", "BF", "BF", "BF",
"BF", "BF", "BF", "BF", "BF", "BF", "BI", "BI", "BI", "BI", "BI",
"BI", "BI", "BI", "BI", "BI", "BI", "BI", "BI", "BI", "BI", "BI",
"BI", "BI", "BI", "BI", "BI", "BI", "BI", "BI", "BI", "BI", "BI",
"BI", "BI", "BI", "BI", "BI", "BI", "BI", "BI", "BI", "CV", "CV",
"CV", "CV", "CV", "CV", "CV", "CV", "CV", "CV", "CV", "CV", "CV",
"CV", "CV", "CV", "CV", "CV", "CV", "CV", "CV", "CV", "CV", "CV",
"KH", "KH", "KH", "KH", "KH", "KH", "KH", "KH", "KH", "KH", "KH",
"KH", "KH", "KH", "KH", "KH", "KH", "KH", "KH", "KH", "KH", "KH",
"KH", "KH", "KH", "KH", "KH", "KH", "KH", "KH", "KH", "KH", "KH",
"KH", "CM", "CM", "CM", "CM", "CM", "CM", "CM", "CM", "CM", "CM",
"CM", "CM", "CM", "CM", "CM", "CM", "CM", "CM", "CM", "CM", "CM",
"CM", "CM", "CM", "CM", "CM", "CM", "CM", "CM", "CM", "CM", "CM",
"CM", "CM", "CM", "CM", "CA", "CA", "CA", "CA", "CA", "CA", "CA",
"CA", "CA", "CA", "CA", "CA", "CA", "CA", "CA", "CA", "CA", "CA",
"CA", "CA", "CA", "CA", "CA", "CA", "CA", "CA", "CA", "CA", "CA",
"CA", "CA", "CA", "CA", "CA", "CA", "KY", "KY", "KY", "KY", "KY",
"KY", "KY", "KY", "KY", "KY", "KY", "KY", "KY", "KY", "KY", "KY",
"KY", "KY", "KY", "KY", "KY", "KY", "KY", "CF", "CF", "CF", "CF",
"CF", "CF", "CF", "CF", "CF", "CF", "CF", "CF", "CF", "CF", "CF",
"CF", "CF", "CF", "CF", "CF", "CF", "CF", "CF", "CF", "CF", "CF",
"CF", "CF", "CF", "CF", "CF", "CF", "CF", "CF", "CF", "CF", "TD",
"TD", "TD", "TD", "TD", "TD", "TD", "TD", "TD", "TD", "TD", "TD",
"TD", "TD", "TD", "TD", "TD", "TD", "TD", "TD", "TD", "TD", "TD",
"TD", "TD", "TD", "TD", "TD", "TD", "TD", "TD", "TD", "TD", "TD",
"TD", "CL", "CL", "CL", "CL", "CL", "CL", "CL", "CL", "CL", "CL",
"CL", "CL", "CL", "CL", "CL", "CL", "CL", "CL", "CL", "CL", "CL",
"CL", "CL", "CL", "CL", "CL", "CL", "CL", "CL", "CL", "CL", "CL",
"CL", "CN", "CN", "CN", "CN", "CN", "CN", "CN", "CN", "CN", "CN",
"CN", "CN", "CN", "CN", "CN", "CN", "CN", "CN", "CN", "CN", "CN",
"CN", "CN", "CN", "CN", "CN", "CN", "CN", "CN", "CN", "CN", "CN",
"HK", "HK", "HK", "HK", "HK", "HK", "HK", "HK", "HK", "HK", "HK",
"HK", "HK", "HK", "HK", "HK", "HK", "HK", "HK", "HK", "HK", "HK",
"HK", "HK", "HK", "HK", "HK", "HK", "HK", "HK", "HK", "HK", "HK",
"HK", "HK", "HK", "HK", "HK", "MO", "MO", "MO", "MO", "MO", "MO",
"MO", "MO", "MO", "MO", "MO", "MO", "MO", "MO", "MO", "MO", "MO",
"MO", "MO", "MO", "MO", "MO", "MO", "CO", "CO", "CO", "CO", "CO",
"CO", "CO", "CO", "CO", "CO", "CO", "CO", "CO", "CO", "CO", "CO",
"CO", "CO", "CO", "CO", "CO", "CO", "CO", "CO", "CO", "CO", "CO",
"CO", "CO", "CO", "CO", "CO", "CO", "CO", "CO", "CO", "KM", "KM",
"KM", "KM", "KM", "KM", "KM", "KM", "KM", "KM", "KM", "KM", "KM",
"KM", "KM", "KM", "KM", "KM", "KM", "KM", "CG", "CG", "CG", "CG",
"CG", "CG", "CG", "CG", "CG", "CG", "CG", "CG", "CG", "CG", "CG",
"CG", "CG", "CG", "CG", "CG", "CG", "CG", "CG", "CG", "CG", "CG",
"CG", "CG", "CG", "CG", "CG", "CG", "CG", "CG", "CG", "CG", "CK",
"CK", "CK", "CK", "CK", "CK", "CK", "CK", "CR", "CR", "CR", "CR",
"CR", "CR", "CR", "CR", "CR", "CR", "CR", "CR", "CR", "CR", "CR",
"CR", "CR", "CR", "CR", "CR", "CR", "CR", "CR", "CR", "CR", "CR",
"CR", "CR", "CR", "CR", "CR", "CR", "CR", "CR", "CR", "CI", "CI",
"CI", "CI", "CI", "CI", "CI", "CI", "CI", "CI", "CI", "CI", "CI",
"CI", "CI", "CI", "CI", "CI", "CI", "CI", "CI", "CI", "CI", "CI",
"CI", "CI", "CI", "CI", "CI", "CI", "CI", "CI", "CI", "CI", "CI",
"CI", "HR", "HR", "HR", "HR", "HR", "HR", "HR", "HR", "HR", "HR",
"HR", "HR", "HR", "HR", "HR", "HR", "HR", "HR", "HR", "HR", "HR",
"HR", "HR", "HR", "HR", "HR", "HR", "HR", "HR", "HR", "HR", "HR",
"HR", "HR", "HR", "HR", "CU", "CU", "CU", "CU", "CU", "CU", "CU",
"CU", "CU", "CU", "CU", "CU", "CU", "CU", "CU", "CU", "CU", "CU",
"CU", "CU", "CU", "CU", "CU", "CU", "CU", "CU", "CU", "CU", "CU",
"CU", "CU", "CU", "CU", "CW", "CW", "CW", "CW", "CW", "CW", "CW",
"CW", "CW", "CW", "CW", "CW", "CW", "CW", "CW", "CW", "CW", "CW",
"CW", "CW", "CW", "CW", "CW", "CW", "CW", "CW", "CW", "CW", "CY",
"CY", "CY", "CY", "CY", "CY", "CY", "CY", "CY", "CY", "CY", "CY",
"CY", "CY", "CY", "CY", "CY", "CY", "CY", "CY", "CY", "CY", "CY",
"CY", "CY", "CY", "CY", "CY", "CY", "CY", "CY", "CY", "CY", "CY",
"CY", "CZ", "CZ", "CZ", "CZ", "CZ", "CZ", "CZ", "CZ", "CZ", "CZ",
"CZ", "CZ", "CZ", "CZ", "CZ", "CZ", "CZ", "CZ", "CZ", "CZ", "CZ",
"CZ", "CZ", "CZ", "CZ", "CZ", "CZ", "CZ", "CZ", "CZ", "CZ", "CZ",
"CZ", "CZ", "CZ", "KP", "KP", "KP", "KP", "KP", "KP", "KP", "KP",
"KP", "KP", "KP", "KP", "KP", "KP", "KP", "KP", "CD", "CD", "CD",
"CD", "CD", "CD", "CD", "CD", "CD", "CD", "CD", "CD", "CD", "CD",
"CD", "CD", "CD", "CD", "CD", "CD", "CD", "CD", "CD", "CD", "CD",
"CD", "CD", "CD", "CD", "CD", "CD", "CD", "CD", "CD", "CD", "CD",
"DK", "DK", "DK", "DK", "DK", "DK", "DK", "DK", "DK", "DK", "DK",
"DK", "DK", "DK", "DK", "DK", "DK", "DK", "DK", "DK", "DK", "DK",
"DK", "DK", "DK", "DK", "DK", "DK", "DK", "DK", "DK", "DK", "DK",
"DK", "DK", "DK", "DJ", "DJ", "DJ", "DJ", "DJ", "DJ", "DJ", "DJ",
"DJ", "DJ", "DJ", "DJ", "DJ", "DJ", "DJ", "DJ", "DJ", "DJ", "DJ",
"DJ", "DJ", "DJ", "DJ", "DJ", "DJ", "DJ", "DJ", "DJ", "DJ", "DJ",
"DJ", "DJ", "DJ", "DJ", "DJ", "DJ", "DJ", "DM", "DM", "DM", "DM",
"DM", "DM", "DM", "DM", "DM", "DM", "DM", "DO", "DO", "DO", "DO",
"DO", "DO", "DO", "DO", "DO", "DO", "DO", "DO", "DO", "DO", "DO",
"DO", "DO", "DO", "DO", "DO", "DO", "DO", "DO", "DO", "DO", "DO",
"DO", "DO", "DO", "DO", "DO", "EC", "EC", "EC", "EC", "EC", "EC",
"EC", "EC", "EC", "EC", "EC", "EC", "EC", "EC", "EC", "EC", "EC",
"EC", "EC", "EC", "EC", "EC", "EC", "EC", "EC", "EC", "EC", "EC",
"EC", "EC", "EC", "EC", "EC", "EC", "EG", "EG", "EG", "EG", "EG",
"EG", "EG", "EG", "EG", "EG", "EG", "EG", "EG", "EG", "EG", "EG",
"EG", "EG", "EG", "EG", "EG", "EG", "EG", "EG", "EG", "EG", "EG",
"EG", "EG", "EG", "EG", "EG", "EG", "EG", "EG", "SV", "SV", "SV",
"SV", "SV", "SV", "SV", "SV", "SV", "SV", "SV", "SV", "SV", "SV",
"SV", "SV", "SV", "SV", "SV", "SV", "SV", "SV", "SV", "SV", "SV",
"SV", "SV", "SV", "SV", "SV", "SV", "SV", "SV", "GQ", "GQ", "GQ",
"GQ", "GQ", "GQ", "GQ", "GQ", "GQ", "GQ", "GQ", "GQ", "GQ", "GQ",
"GQ", "GQ", "ER", "ER", "ER", "ER", "ER", "ER", "ER", "ER", "ER",
"ER", "ER", "ER", "ER", "ER", "ER", "ER", "ER", "ER", "ER", "ER",
"ER", "ER", "ER", "ER", "ER", "ER", "ER", "ER", "ER", "ER", "ER",
"ER", "ER", "ER", "ER", "ER", "ER", "ER", "EE", "EE", "EE", "EE",
"EE", "EE", "EE", "EE", "EE", "EE", "EE", "EE", "EE", "EE", "EE",
"EE", "EE", "EE", "EE", "EE", "EE", "EE", "EE", "EE", "EE", "EE",
"EE", "EE", "EE", "EE", "EE", "EE", "EE", "EE", "EE", "EE", "SZ",
"SZ", "SZ", "SZ", "SZ", "SZ", "SZ", "SZ", "SZ", "SZ", "SZ", "SZ",
"SZ", "SZ", "SZ", "SZ", "SZ", "SZ", "SZ", "SZ", "SZ", "SZ", "SZ",
"SZ", "SZ", "SZ", "SZ", "SZ", "SZ", "SZ", "SZ", "SZ", "ET", "ET",
"ET", "ET", "ET", "ET", "ET", "ET", "ET", "ET", "ET", "ET", "ET",
"ET", "ET", "ET", "ET", "ET", "ET", "ET", "ET", "ET", "ET", "ET",
"ET", "ET", "ET", "ET", "ET", "ET", "ET", "ET", "ET", "ET", "ET",
"ET", "FK", "FK", "FK", "FK", "FK", "FK", "FK", "FK", "FO", "FO",
"FO", "FO", "FO", "FO", "FO", "FO", "FJ", "FJ", "FJ", "FJ", "FJ",
"FJ", "FJ", "FJ", "FJ", "FJ", "FJ", "FJ", "FJ", "FJ", "FJ", "FJ",
"FJ", "FJ", "FJ", "FJ", "FJ", "FJ", "FJ", "FJ", "FJ", "FJ", "FJ",
"FJ", "FJ", "FJ", "FI", "FI", "FI", "FI", "FI", "FI", "FI", "FI",
"FI", "FI", "FI", "FI", "FI", "FI", "FI", "FI", "FI", "FI", "FI",
"FI", "FI", "FI", "FI", "FI", "FI", "FI", "FI", "FI", "FI", "FI",
"FI", "FI", "FI", "FI", "FI", "FR", "FR", "FR", "FR", "FR", "FR",
"FR", "FR", "FR", "FR", "FR", "FR", "FR", "FR", "FR", "FR", "FR",
"FR", "FR", "FR", "FR", "FR", "FR", "FR", "FR", "FR", "FR", "FR",
"FR", "FR", "FR", "FR", "FR", "FR", "FR", "FR", "GF", "GF", "GF",
"GF", "GF", "GF", "GF", "GF", "GF", "GF", "GF", "GF", "GF", "GF",
"GF", "GF", "PF", "PF", "PF", "PF", "PF", "PF", "PF", "PF", "PF",
"PF", "PF", "PF", "PF", "PF", "PF", "PF", "GA", "GA", "GA", "GA",
"GA", "GA", "GA", "GA", "GA", "GA", "GA", "GA", "GA", "GA", "GA",
"GA", "GA", "GA", "GA", "GA", "GA", "GA", "GA", "GA", "GA", "GA",
"GA", "GA", "GA", "GA", "GA", "GA", "GA", "GA", "GA", "GA", "GA",
"GM", "GM", "GM", "GM", "GM", "GM", "GM", "GM", "GM", "GM", "GM",
"GM", "GM", "GM", "GM", "GM", "GM", "GM", "GM", "GM", "GM", "GM",
"GM", "GM", "GM", "GM", "GM", "GM", "GM", "GM", "GM", "GM", "GM",
"GM", "GM", "GM", "GM", "GE", "GE", "GE", "GE", "GE", "GE", "GE",
"GE", "GE", "GE", "GE", "GE", "GE", "GE", "GE", "GE", "GE", "GE",
"GE", "GE", "GE", "GE", "GE", "GE", "GE", "GE", "GE", "GE", "GE",
"GE", "GE", "GE", "GE", "GE", "GE", "GE", "DE", "DE", "DE", "DE",
"DE", "DE", "DE", "DE", "DE", "DE", "DE", "DE", "DE", "DE", "DE",
"DE", "DE", "DE", "DE", "DE", "DE", "DE", "DE", "DE", "DE", "DE",
"DE", "DE", "DE", "DE", "DE", "DE", "DE", "DE", "DE", "DE", "GH",
"GH", "GH", "GH", "GH", "GH", "GH", "GH", "GH", "GH", "GH", "GH",
"GH", "GH", "GH", "GH", "GH", "GH", "GH", "GH", "GH", "GH", "GH",
"GH", "GH", "GH", "GH", "GH", "GH", "GH", "GH", "GH", "GH", "GH",
"GH", "GH", "GH", "GI", "GI", "GI", "GI", "GI", "GI", "GI", "GI",
"GR", "GR", "GR", "GR", "GR", "GR", "GR", "GR", "GR", "GR", "GR",
"GR", "GR", "GR", "GR", "GR", "GR", "GR", "GR", "GR", "GR", "GR",
"GR", "GR", "GR", "GR", "GR", "GR", "GR", "GR", "GR", "GR", "GR",
"GR", "GR", "GR", "GL", "GL", "GL", "GL", "GL", "GL", "GL", "GL",
"GD", "GD", "GD", "GD", "GD", "GD", "GD", "GD", "GD", "GD", "GD",
"GD", "GD", "GD", "GD", "GD", "GD", "GD", "GD", "GD", "GD", "GD",
"GD", "GD", "GD", "GP", "GP", "GP", "GP", "GP", "GP", "GP", "GP",
"GP", "GP", "GP", "GP", "GP", "GP", "GP", "GP", "GU", "GU", "GU",
"GU", "GU", "GU", "GU", "GU", "GU", "GU", "GU", "GU", "GU", "GU",
"GU", "GU", "GT", "GT", "GT", "GT", "GT", "GT", "GT", "GT", "GT",
"GT", "GT", "GT", "GT", "GT", "GT", "GT", "GT", "GT", "GT", "GT",
"GT", "GT", "GT", "GT", "GT", "GT", "GT", "GT", "GT", "GT", "GT",
"GT", "GT", "GN", "GN", "GN", "GN", "GN", "GN", "GN", "GN", "GN",
"GN", "GN", "GN", "GN", "GN", "GN", "GN", "GN", "GN", "GN", "GN",
"GN", "GN", "GN", "GN", "GN", "GN", "GN", "GN", "GN", "GN", "GN",
"GN", "GN", "GN", "GN", "GN", "GN", "GW", "GW", "GW", "GW", "GW",
"GW", "GW", "GW", "GW", "GW", "GW", "GW", "GW", "GW", "GW", "GW",
"GW", "GW", "GW", "GW", "GW", "GW", "GW", "GW", "GW", "GW", "GW",
"GW", "GW", "GW", "GW", "GW", "GY", "GY", "GY", "GY", "GY", "GY",
"GY", "GY", "GY", "GY", "GY", "GY", "GY", "GY", "GY", "GY", "GY",
"GY", "GY", "GY", "GY", "GY", "GY", "GY", "GY", "GY", "GY", "GY",
"GY", "HT", "HT", "HT", "HT", "HT", "HT", "HT", "HT", "HT", "HT",
"HT", "HT", "HT", "HT", "HT", "HT", "HT", "HT", "HT", "HT", "HT",
"HT", "HT", "HT", "HT", "HT", "HT", "HT", "HT", "HT", "VA", "VA",
"VA", "VA", "VA", "VA", "VA", "VA", "HN", "HN", "HN", "HN", "HN",
"HN", "HN", "HN", "HN", "HN", "HN", "HN", "HN", "HN", "HN", "HN",
"HN", "HN", "HN", "HN", "HN", "HN", "HN", "HN", "HN", "HN", "HN",
"HN", "HN", "HN", "HN", "HN", "HN", "HU", "HU", "HU", "HU", "HU",
"HU", "HU", "HU", "HU", "HU", "HU", "HU", "HU", "HU", "HU", "HU",
"HU", "HU", "HU", "HU", "HU", "HU", "HU", "HU", "HU", "HU", "HU",
"HU", "HU", "HU", "HU", "HU", "HU", "HU", "HU", "HU", "IS", "IS",
"IS", "IS", "IS", "IS", "IS", "IS", "IS", "IS", "IS", "IS", "IS",
"IS", "IS", "IS", "IS", "IS", "IS", "IS", "IS", "IS", "IS", "IS",
"IS", "IS", "IS", "IS", "IS", "IS", "IS", "IS", "IS", "IS", "IS",
"IS", "IN", "IN", "IN", "IN", "IN", "IN", "IN", "IN", "IN", "IN",
"IN", "IN", "IN", "IN", "IN", "IN", "IN", "IN", "IN", "IN", "IN",
"IN", "IN", "IN", "IN", "IN", "IN", "IN", "IN", "IN", "IN", "IN",
"IN", "IN", "ID", "ID", "ID", "ID", "ID", "ID", "ID", "ID", "ID",
"ID", "ID", "ID", "ID", "ID", "ID", "ID", "ID", "ID", "ID", "ID",
"ID", "ID", "ID", "ID", "ID", "ID", "ID", "ID", "ID", "ID", "ID",
"ID", "ID", "ID", "IR", "IR", "IR", "IR", "IR", "IR", "IR", "IR",
"IR", "IR", "IR", "IR", "IR", "IR", "IR", "IR", "IR", "IR", "IR",
"IR", "IR", "IR", "IR", "IR", "IR", "IR", "IR", "IR", "IR", "IR",
"IR", "IR", "IR", "IR", "IR", "IR", "IQ", "IQ", "IQ", "IQ", "IQ",
"IQ", "IQ", "IQ", "IQ", "IQ", "IQ", "IQ", "IQ", "IQ", "IQ", "IQ",
"IQ", "IQ", "IQ", "IQ", "IQ", "IQ", "IQ", "IQ", "IQ", "IQ", "IQ",
"IQ", "IQ", "IQ", "IQ", "IQ", "IQ", "IQ", "IQ", "IQ", "IE", "IE",
"IE", "IE", "IE", "IE", "IE", "IE", "IE", "IE", "IE", "IE", "IE",
"IE", "IE", "IE", "IE", "IE", "IE", "IE", "IE", "IE", "IE", "IE",
"IE", "IE", "IE", "IE", "IE", "IE", "IE", "IE", "IE", "IE", "IE",
"IE", "IM", "IM", "IM", "IM", "IM", "IM", "IM", "IM", "IL", "IL",
"IL", "IL", "IL", "IL", "IL", "IL", "IL", "IL", "IL", "IL", "IL",
"IL", "IL", "IL", "IL", "IL", "IL", "IL", "IL", "IL", "IL", "IL",
"IL", "IL", "IL", "IL", "IL", "IL", "IL", "IL", "IL", "IL", "IL",
"IT", "IT", "IT", "IT", "IT", "IT", "IT", "IT", "IT", "IT", "IT",
"IT", "IT", "IT", "IT", "IT", "IT", "IT", "IT", "IT", "IT", "IT",
"IT", "IT", "IT", "IT", "IT", "IT", "IT", "IT", "IT", "IT", "IT",
"IT", "IT", "JM", "JM", "JM", "JM", "JM", "JM", "JM", "JM", "JM",
"JM", "JM", "JM", "JM", "JM", "JM", "JM", "JM", "JM", "JM", "JM",
"JM", "JM", "JM", "JM", "JM", "JM", "JM", "JM", "JM", "JP", "JP",
"JP", "JP", "JP", "JP", "JP", "JP", "JP", "JP", "JP", "JP", "JP",
"JP", "JP", "JP", "JP", "JP", "JP", "JP", "JP", "JP", "JP", "JP",
"JP", "JP", "JP", "JP", "JP", "JP", "JP", "JP", "JP", "JP", "JP",
"JP", "JO", "JO", "JO", "JO", "JO", "JO", "JO", "JO", "JO", "JO",
"JO", "JO", "JO", "JO", "JO", "JO", "JO", "JO", "JO", "JO", "JO",
"JO", "JO", "JO", "JO", "JO", "JO", "JO", "JO", "JO", "JO", "JO",
"JO", "JO", "JO", "KZ", "KZ", "KZ", "KZ", "KZ", "KZ", "KZ", "KZ",
"KZ", "KZ", "KZ", "KZ", "KZ", "KZ", "KZ", "KZ", "KZ", "KZ", "KZ",
"KZ", "KZ", "KZ", "KZ", "KZ", "KZ", "KZ", "KZ", "KZ", "KZ", "KZ",
"KZ", "KZ", "KZ", "KZ", "KZ", "KZ", "KE", "KE", "KE", "KE", "KE",
"KE", "KE", "KE", "KE", "KE", "KE", "KE", "KE", "KE", "KE", "KE",
"KE", "KE", "KE", "KE", "KE", "KE", "KE", "KE", "KE", "KE", "KE",
"KE", "KE", "KE", "KE", "KE", "KE", "KE", "KE", "KE", "KI", "KI",
"KI", "KI", "KI", "KI", "KI", "KI", "KI", "KI", "KI", "KI", "KI",
"KI", "KI", "KI", "KW", "KW", "KW", "KW", "KW", "KW", "KW", "KW",
"KW", "KW", "KW", "KW", "KW", "KW", "KW", "KW", "KW", "KW", "KW",
"KW", "KW", "KW", "KW", "KW", "KW", "KW", "KW", "KW", "KW", "KW",
"KW", "KW", "KW", "KW", "KW", "KW", "KG", "KG", "KG", "KG", "KG",
"KG", "KG", "KG", "KG", "KG", "KG", "KG", "KG", "KG", "KG", "KG",
"KG", "KG", "KG", "KG", "KG", "KG", "KG", "KG", "KG", "KG", "KG",
"KG", "KG", "KG", "KG", "KG", "KG", "KG", "KG", "KG", "LA", "LA",
"LA", "LA", "LA", "LA", "LA", "LA", "LA", "LA", "LA", "LA", "LA",
"LA", "LA", "LA", "LA", "LA", "LA", "LV", "LV", "LV", "LV", "LV",
"LV", "LV", "LV", "LV", "LV", "LV", "LV", "LV", "LV", "LV", "LV",
"LV", "LV", "LV", "LV", "LV", "LV", "LV", "LV", "LV", "LV", "LV",
"LV", "LV", "LV", "LV", "LV", "LV", "LV", "LV", "LV", "LB", "LB",
"LB", "LB", "LB", "LB", "LB", "LB", "LB", "LB", "LB", "LB", "LB",
"LB", "LB", "LB", "LB", "LB", "LB", "LB", "LB", "LB", "LB", "LB",
"LB", "LB", "LB", "LB", "LB", "LB", "LB", "LB", "LB", "LB", "LB",
"LB", "LS", "LS", "LS", "LS", "LS", "LS", "LS", "LS", "LS", "LS",
"LS", "LS", "LS", "LS", "LS", "LS", "LS", "LS", "LS", "LS", "LS",
"LS", "LS", "LS", "LS", "LS", "LR", "LR", "LR", "LR", "LR", "LR",
"LR", "LR", "LR", "LR", "LR", "LR", "LR", "LR", "LR", "LR", "LR",
"LR", "LR", "LR", "LR", "LR", "LR", "LR", "LR", "LR", "LR", "LR",
"LR", "LR", "LR", "LR", "LR", "LR", "LR", "LY", "LY", "LY", "LY",
"LY", "LY", "LY", "LY", "LY", "LY", "LY", "LY", "LY", "LY", "LY",
"LY", "LY", "LY", "LY", "LY", "LY", "LY", "LY", "LY", "LY", "LY",
"LY", "LY", "LY", "LY", "LY", "LY", "LY", "LY", "LY", "LY", "LI",
"LI", "LI", "LI", "LI", "LI", "LI", "LI", "LI", "LI", "LI", "LI",
"LI", "LI", "LI", "LI", "LI", "LI", "LI", "LI", "LI", "LI", "LI",
"LI", "LI", "LT", "LT", "LT", "LT", "LT", "LT", "LT", "LT", "LT",
"LT", "LT", "LT", "LT", "LT", "LT", "LT", "LT", "LT", "LT", "LT",
"LT", "LT", "LT", "LT", "LT", "LT", "LT", "LT", "LT", "LT", "LT",
"LT", "LT", "LT", "LT", "LT", "LU", "LU", "LU", "LU", "LU", "LU",
"LU", "LU", "LU", "LU", "LU", "LU", "LU", "LU", "LU", "LU", "LU",
"LU", "LU", "LU", "LU", "LU", "LU", "LU", "LU", "LU", "LU", "LU",
"LU", "LU", "LU", "LU", "LU", "LU", "LU", "MG", "MG", "MG", "MG",
"MG", "MG", "MG", "MG", "MG", "MG", "MG", "MG", "MG", "MG", "MG",
"MG", "MG", "MG", "MG", "MG", "MG", "MG", "MG", "MG", "MG", "MG",
"MG", "MG", "MW", "MW", "MW", "MW", "MW", "MW", "MW", "MW", "MW",
"MW", "MW", "MW", "MW", "MW", "MW", "MW", "MW", "MW", "MW", "MW",
"MW", "MW", "MW", "MW", "MW", "MW", "MW", "MW", "MW", "MW", "MW",
"MW", "MW", "MW", "MW", "MY", "MY", "MY", "MY", "MY", "MY", "MY",
"MY", "MY", "MY", "MY", "MY", "MY", "MY", "MY", "MY", "MY", "MY",
"MY", "MY", "MY", "MY", "MY", "MY", "MY", "MY", "MY", "MY", "MY",
"MY", "MY", "MY", "MY", "MY", "MY", "MY", "MV", "MV", "MV", "MV",
"MV", "MV", "MV", "MV", "MV", "MV", "MV", "MV", "MV", "MV", "MV",
"MV", "ML", "ML", "ML", "ML", "ML", "ML", "ML", "ML", "ML", "ML",
"ML", "ML", "ML", "ML", "ML", "ML", "ML", "ML", "ML", "ML", "ML",
"ML", "ML", "ML", "ML", "ML", "ML", "ML", "ML", "ML", "ML", "ML",
"ML", "ML", "MT", "MT", "MT", "MT", "MT", "MT", "MT", "MT", "MT",
"MT", "MT", "MT", "MT", "MT", "MT", "MT", "MT", "MT", "MT", "MT",
"MT", "MT", "MT", "MT", "MT", "MT", "MT", "MT", "MT", "MT", "MT",
"MT", "MH", "MH", "MH", "MH", "MH", "MH", "MH", "MH", "MQ", "MQ",
"MQ", "MQ", "MQ", "MQ", "MQ", "MQ", "MQ", "MQ", "MQ", "MQ", "MQ",
"MQ", "MQ", "MQ", "MR", "MR", "MR", "MR", "MR", "MR", "MR", "MR",
"MR", "MR", "MR", "MR", "MR", "MR", "MR", "MR", "MR", "MR", "MR",
"MR", "MR", "MR", "MR", "MR", "MR", "MR", "MR", "MR", "MR", "MR",
"MR", "MR", "MR", "MU", "MU", "MU", "MU", "MU", "MU", "MU", "MU",
"MU", "MU", "MU", "MU", "MU", "MU", "MU", "MU", "MU", "MU", "MU",
"MU", "MU", "YT", "YT", "YT", "YT", "YT", "YT", "YT", "YT", "YT",
"YT", "YT", "YT", "YT", "YT", "YT", "YT", "MX", "MX", "MX", "MX",
"MX", "MX", "MX", "MX", "MX", "MX", "MX", "MX", "MX", "MX", "MX",
"MX", "MX", "MX", "MX", "MX", "MX", "MX", "MX", "MX", "MX", "MX",
"MX", "MX", "MX", "MX", "MX", "MX", "MX", "MX", "FM", "FM", "FM",
"FM", "FM", "FM", "FM", "FM", "FM", "FM", "FM", "FM", "FM", "FM",
"FM", "FM", "FM", "FM", "FM", "FM", "FM", "FM", "FM", "MC", "MC",
"MC", "MC", "MC", "MC", "MC", "MC", "MC", "MC", "MC", "MC", "MC",
"MC", "MC", "MC", "MN", "MN", "MN", "MN", "MN", "MN", "MN", "MN",
"MN", "MN", "MN", "MN", "MN", "MN", "MN", "MN", "MN", "MN", "MN",
"MN", "MN", "MN", "MN", "MN", "MN", "MN", "MN", "MN", "MN", "MN",
"MN", "MN", "MN", "MN", "MN", "ME", "ME", "ME", "ME", "ME", "ME",
"ME", "ME", "ME", "ME", "ME", "ME", "ME", "ME", "ME", "ME", "ME",
"ME", "ME", "ME", "ME", "ME", "ME", "ME", "ME", "ME", "ME", "ME",
"MS", "MS", "MS", "MS", "MS", "MS", "MS", "MS", "MS", "MS", "MA",
"MA", "MA", "MA", "MA", "MA", "MA", "MA", "MA", "MA", "MA", "MA",
"MA", "MA", "MA", "MA", "MA", "MA", "MA", "MA", "MA", "MA", "MA",
"MA", "MA", "MA", "MA", "MA", "MA", "MA", "MA", "MA", "MZ", "MZ",
"MZ", "MZ", "MZ", "MZ", "MZ", "MZ", "MZ", "MZ", "MZ", "MZ", "MZ",
"MZ", "MZ", "MZ", "MZ", "MZ", "MZ", "MZ", "MZ", "MZ", "MZ", "MZ",
"MZ", "MZ", "MZ", "MZ", "MZ", "MZ", "MZ", "MZ", "MZ", "MZ", "MZ",
"MZ", "MM", "MM", "MM", "MM", "MM", "MM", "MM", "MM", "MM", "MM",
"MM", "MM", "MM", "MM", "MM", "MM", "MM", "MM", "MM", "MM", "MM",
"MM", "MM", "MM", "MM", "MM", "MM", "MM", "MM", "NA", "NA", "NA",
"NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA",
"NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA",
"NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA",
"NR", "NR", "NR", "NR", "NR", "NR", "NR", "NR", "NR", "NR", "NR",
"NR", "NR", "NR", "NR", "NR", "NR", "NR", "NP", "NP", "NP", "NP",
"NP", "NP", "NP", "NP", "NP", "NP", "NP", "NP", "NP", "NP", "NP",
"NP", "NP", "NP", "NP", "NP", "NP", "NP", "NP", "NP", "NP", "NP",
"NP", "NP", "NP", "NP", "NP", "NP", "NP", "NP", "NP", "NP", "NL",
"NL", "NL", "NL", "NL", "NL", "NL", "NL", "NL", "NL", "NL", "NL",
"NL", "NL", "NL", "NL", "NL", "NL", "NL", "NL", "NL", "NL", "NL",
"NL", "NL", "NL", "NL", "NL", "NL", "NL", "NL", "NL", "NL", "NL",
"NL", "NL", "NC", "NC", "NC", "NC", "NC", "NC", "NC", "NC", "NC",
"NC", "NC", "NC", "NC", "NC", "NC", "NC", "NZ", "NZ", "NZ", "NZ",
"NZ", "NZ", "NZ", "NZ", "NZ", "NZ", "NZ", "NZ", "NZ", "NZ", "NZ",
"NZ", "NZ", "NZ", "NZ", "NZ", "NZ", "NZ", "NZ", "NZ", "NZ", "NZ",
"NZ", "NZ", "NZ", "NZ", "NZ", "NZ", "NZ", "NZ", "NI", "NI", "NI",
"NI", "NI", "NI", "NI", "NI", "NI", "NI", "NI", "NI", "NI", "NI",
"NI", "NI", "NI", "NI", "NI", "NI", "NI", "NI", "NI", "NI", "NI",
"NI", "NI", "NI", "NI", "NI", "NI", "NI", "NI", "NI", "NE", "NE",
"NE", "NE", "NE", "NE", "NE", "NE", "NE", "NE", "NE", "NE", "NE",
"NE", "NE", "NE", "NE", "NE", "NE", "NE", "NE", "NE", "NE", "NE",
"NE", "NE", "NE", "NE", "NE", "NE", "NE", "NE", "NE", "NE", "NE",
"NE", "NG", "NG", "NG", "NG", "NG", "NG", "NG", "NG", "NG", "NG",
"NG", "NG", "NG", "NG", "NG", "NG", "NG", "NG", "NG", "NG", "NG",
"NG", "NG", "NG", "NG", "NG", "NG", "NG", "NG", "NG", "NG", "NG",
"NG", "NG", "NG", "NG", "NU", "NU", "NU", "NU", "NU", "NU", "NU",
"NU", "MK", "MK", "MK", "MK", "MK", "MK", "MK", "MK", "MK", "MK",
"MK", "MK", "MK", "MK", "MK", "MK", "MK", "MK", "MK", "MK", "MK",
"MK", "MK", "MK", "MK", "MK", "MK", "MK", "MK", "MK", "MK", "MK",
"MK", "MK", "MK", "MK", "MP", "MP", "MP", "MP", "MP", "MP", "MP",
"MP", "NO", "NO", "NO", "NO", "NO", "NO", "NO", "NO", "NO", "NO",
"NO", "NO", "NO", "NO", "NO", "NO", "NO", "NO", "NO", "NO", "NO",
"NO", "NO", "NO", "NO", "NO", "NO", "NO", "NO", "NO", "NO", "NO",
"NO", "NO", "NO", "OM", "OM", "OM", "OM", "OM", "OM", "OM", "OM",
"OM", "OM", "OM", "OM", "OM", "OM", "OM", "OM", "OM", "OM", "OM",
"OM", "OM", "OM", "OM", "OM", "OM", "OM", "OM", "OM", "OM", "OM",
"OM", "PK", "PK", "PK", "PK", "PK", "PK", "PK", "PK", "PK", "PK",
"PK", "PK", "PK", "PK", "PK", "PK", "PK", "PK", "PK", "PK", "PK",
"PK", "PK", "PK", "PK", "PK", "PK", "PK", "PK", "PK", "PK", "PK",
"PK", "PK", "PK", "PK", "PW", "PW", "PW", "PW", "PW", "PW", "PW",
"PW", "PW", "PW", "PW", "PW", "PW", "PW", "PA", "PA", "PA", "PA",
"PA", "PA", "PA", "PA", "PA", "PA", "PA", "PA", "PA", "PA", "PA",
"PA", "PA", "PA", "PA", "PA", "PA", "PA", "PA", "PA", "PA", "PA",
"PA", "PA", "PA", "PA", "PA", "PA", "PA", "PA", "PA", "PA", "PG",
"PG", "PG", "PG", "PG", "PG", "PG", "PG", "PG", "PG", "PG", "PG",
"PG", "PG", "PG", "PG", "PG", "PG", "PG", "PG", "PG", "PG", "PG",
"PG", "PG", "PG", "PG", "PG", "PG", "PG", "PG", "PG", "PG", "PY",
"PY", "PY", "PY", "PY", "PY", "PY", "PY", "PY", "PY", "PY", "PY",
"PY", "PY", "PY", "PY", "PY", "PY", "PY", "PY", "PY", "PY", "PY",
"PY", "PY", "PY", "PY", "PY", "PY", "PY", "PY", "PY", "PY", "PE",
"PE", "PE", "PE", "PE", "PE", "PE", "PE", "PE", "PE", "PE", "PE",
"PE", "PE", "PE", "PE", "PE", "PE", "PE", "PE", "PE", "PE", "PE",
"PE", "PE", "PE", "PE", "PE", "PE", "PE", "PE", "PE", "PE", "PE",
"PE", "PH", "PH", "PH", "PH", "PH", "PH", "PH", "PH", "PH", "PH",
"PH", "PH", "PH", "PH", "PH", "PH", "PH", "PH", "PH", "PH", "PH",
"PH", "PH", "PH", "PH", "PH", "PH", "PH", "PH", "PH", "PH", "PH",
"PH", "PH", "PH", "PH", "PL", "PL", "PL", "PL", "PL", "PL", "PL",
"PL", "PL", "PL", "PL", "PL", "PL", "PL", "PL", "PL", "PL", "PL",
"PL", "PL", "PL", "PL", "PL", "PL", "PL", "PL", "PL", "PL", "PL",
"PL", "PL", "PL", "PL", "PL", "PL", "PL", "PT", "PT", "PT", "PT",
"PT", "PT", "PT", "PT", "PT", "PT", "PT", "PT", "PT", "PT", "PT",
"PT", "PT", "PT", "PT", "PT", "PT", "PT", "PT", "PT", "PT", "PT",
"PT", "PT", "PT", "PT", "PT", "PT", "PT", "PT", "PR", "PR", "PR",
"PR", "PR", "PR", "PR", "PR", "PR", "PR", "PR", "PR", "PR", "PR",
"PR", "PR", "QA", "QA", "QA", "QA", "QA", "QA", "QA", "QA", "QA",
"QA", "QA", "QA", "QA", "QA", "QA", "QA", "QA", "QA", "QA", "QA",
"QA", "QA", "QA", "QA", "QA", "QA", "QA", "QA", "QA", "QA", "QA",
"QA", "QA", "QA", "QA", "KR", "KR", "KR", "KR", "KR", "KR", "KR",
"KR", "KR", "KR", "KR", "KR", "KR", "KR", "KR", "KR", "KR", "KR",
"KR", "KR", "KR", "KR", "KR", "KR", "KR", "KR", "KR", "KR", "KR",
"KR", "KR", "KR", "KR", "KR", "KR", "MD", "MD", "MD", "MD", "MD",
"MD", "MD", "MD", "MD", "MD", "MD", "MD", "MD", "MD", "MD", "MD",
"MD", "MD", "MD", "MD", "MD", "MD", "MD", "MD", "MD", "MD", "MD",
"MD", "MD", "MD", "MD", "MD", "MD", "MD", "MD", "MD", "RE", "RE",
"RE", "RE", "RE", "RE", "RE", "RE", "RE", "RE", "RE", "RE", "RE",
"RE", "RE", "RE", "RO", "RO", "RO", "RO", "RO", "RO", "RO", "RO",
"RO", "RO", "RO", "RO", "RO", "RO", "RO", "RO", "RO", "RO", "RO",
"RO", "RO", "RO", "RO", "RO", "RO", "RO", "RO", "RO", "RO", "RO",
"RO", "RO", "RO", "RO", "RO", "RO", "RU", "RU", "RU", "RU", "RU",
"RU", "RU", "RU", "RU", "RU", "RU", "RU", "RU", "RU", "RU", "RU",
"RU", "RU", "RU", "RU", "RU", "RU", "RU", "RU", "RU", "RU", "RU",
"RU", "RU", "RU", "RU", "RU", "RU", "RU", "RU", "RU", "RW", "RW",
"RW", "RW", "RW", "RW", "RW", "RW", "RW", "RW", "RW", "RW", "RW",
"RW", "RW", "RW", "RW", "RW", "RW", "RW", "RW", "RW", "RW", "RW",
"RW", "RW", "RW", "RW", "RW", "RW", "RW", "RW", "RW", "RW", "RW",
"RW", "SH", "SH", "SH", "SH", "SH", "SH", "SH", "SH", "KN", "KN",
"KN", "KN", "KN", "KN", "KN", "KN", "KN", "KN", "KN", "KN", "KN",
"KN", "LC", "LC", "LC", "LC", "LC", "LC", "LC", "LC", "LC", "LC",
"LC", "LC", "LC", "LC", "LC", "LC", "LC", "LC", "LC", "LC", "LC",
"LC", "LC", "LC", "LC", "LC", "PM", "PM", "PM", "PM", "PM", "PM",
"PM", "PM", "VC", "VC", "VC", "VC", "VC", "VC", "VC", "VC", "VC",
"VC", "VC", "VC", "VC", "VC", "VC", "VC", "VC", "VC", "VC", "VC",
"WS", "WS", "WS", "WS", "WS", "WS", "WS", "WS", "WS", "WS", "WS",
"WS", "WS", "WS", "WS", "WS", "WS", "WS", "WS", "WS", "SM", "SM",
"SM", "SM", "SM", "SM", "SM", "SM", "ST", "ST", "ST", "ST", "ST",
"ST", "ST", "ST", "ST", "ST", "ST", "ST", "ST", "ST", "ST", "ST",
"SA", "SA", "SA", "SA", "SA", "SA", "SA", "SA", "SA", "SA", "SA",
"SA", "SA", "SA", "SA", "SA", "SA", "SA", "SA", "SA", "SA", "SA",
"SA", "SA", "SA", "SA", "SA", "SA", "SA", "SA", "SA", "SA", "SA",
"SA", "SA", "SA", "SN", "SN", "SN", "SN", "SN", "SN", "SN", "SN",
"SN", "SN", "SN", "SN", "SN", "SN", "SN", "SN", "SN", "SN", "SN",
"SN", "SN", "SN", "SN", "SN", "SN", "SN", "SN", "SN", "SN", "SN",
"SN", "SN", "SN", "SN", "SN", "SN", "SN", "RS", "RS", "RS", "RS",
"RS", "RS", "RS", "RS", "RS", "RS", "RS", "RS", "RS", "RS", "RS",
"RS", "RS", "RS", "RS", "RS", "RS", "RS", "RS", "RS", "RS", "RS",
"RS", "RS", "RS", "RS", "RS", "RS", "RS", "RS", "RS", "RS", "SC",
"SC", "SC", "SC", "SC", "SC", "SC", "SC", "SC", "SC", "SC", "SC",
"SC", "SC", "SC", "SC", "SC", "SC", "SL", "SL", "SL", "SL", "SL",
"SL", "SL", "SL", "SL", "SL", "SL", "SL", "SL", "SL", "SL", "SL",
"SL", "SL", "SL", "SL", "SL", "SL", "SL", "SL", "SL", "SL", "SL",
"SL", "SL", "SL", "SL", "SL", "SL", "SL", "SL", "SG", "SG", "SG",
"SG", "SG", "SG", "SG", "SG", "SG", "SG", "SG", "SG", "SG", "SG",
"SG", "SG", "SG", "SG", "SG", "SG", "SG", "SG", "SG", "SG", "SG",
"SG", "SG", "SG", "SX", "SX", "SX", "SX", "SX", "SX", "SX", "SX",
"SX", "SX", "SX", "SX", "SX", "SX", "SX", "SX", "SX", "SX", "SX",
"SX", "SK", "SK", "SK", "SK", "SK", "SK", "SK", "SK", "SK", "SK",
"SK", "SK", "SK", "SK", "SK", "SK", "SK", "SK", "SK", "SK", "SK",
"SK", "SK", "SK", "SK", "SK", "SK", "SK", "SK", "SK", "SK", "SK",
"SK", "SK", "SK", "SI", "SI", "SI", "SI", "SI", "SI", "SI", "SI",
"SI", "SI", "SI", "SI", "SI", "SI", "SI", "SI", "SI", "SI", "SI",
"SI", "SI", "SI", "SI", "SI", "SI", "SI", "SI", "SI", "SI", "SI",
"SI", "SI", "SI", "SI", "SI", "SI", "SI", "SI", "SI", "SB", "SB",
"SB", "SB", "SB", "SB", "SB", "SB", "SB", "SB", "SB", "SB", "SB",
"SB", "SB", "SB", "SB", "SB", "SB", "SB", "SB", "SB", "SO", "SO",
"SO", "SO", "SO", "SO", "SO", "SO", "SO", "SO", "SO", "SO", "SO",
"SO", "SO", "SO", "SO", "SO", "SO", "SO", "SO", "SO", "SO", "SO",
"SO", "SO", "SO", "SO", "SO", "SO", "SO", "SO", "SO", "SO", "SO",
"SO", "ZA", "ZA", "ZA", "ZA", "ZA", "ZA", "ZA", "ZA", "ZA", "ZA",
"ZA", "ZA", "ZA", "ZA", "ZA", "ZA", "ZA", "ZA", "ZA", "ZA", "ZA",
"ZA", "ZA", "ZA", "ZA", "ZA", "ZA", "ZA", "ZA", "ZA", "ZA", "ZA",
"ZA", "SS", "SS", "SS", "SS", "SS", "SS", "SS", "SS", "SS", "SS",
"SS", "SS", "SS", "SS", "SS", "SS", "SS", "SS", "SS", "SS", "SS",
"SS", "SS", "SS", "ES", "ES", "ES", "ES", "ES", "ES", "ES", "ES",
"ES", "ES", "ES", "ES", "ES", "ES", "ES", "ES", "ES", "ES", "ES",
"ES", "ES", "ES", "ES", "ES", "ES", "ES", "ES", "ES", "ES", "ES",
"ES", "ES", "ES", "ES", "ES", "LK", "LK", "LK", "LK", "LK", "LK",
"LK", "LK", "LK", "LK", "LK", "LK", "LK", "LK", "LK", "LK", "LK",
"LK", "LK", "LK", "LK", "LK", "LK", "LK", "LK", "LK", "LK", "LK",
"LK", "LK", "LK", "LK", "LK", "LK", "LK", "LK", "PS", "PS", "PS",
"PS", "PS", "PS", "PS", "PS", "PS", "PS", "PS", "PS", "PS", "PS",
"PS", "PS", "PS", "PS", "SD", "SD", "SD", "SD", "SD", "SD", "SD",
"SD", "SD", "SD", "SD", "SD", "SD", "SD", "SD", "SD", "SD", "SD",
"SD", "SD", "SD", "SD", "SD", "SD", "SD", "SD", "SD", "SD", "SD",
"SD", "SD", "SD", "SD", "SD", "SD", "SD", "SR", "SR", "SR", "SR",
"SR", "SR", "SR", "SR", "SR", "SR", "SR", "SR", "SR", "SR", "SR",
"SR", "SR", "SR", "SR", "SR", "SR", "SR", "SR", "SR", "SR", "SR",
"SR", "SR", "SR", "SR", "SR", "SE", "SE", "SE", "SE", "SE", "SE",
"SE", "SE", "SE", "SE", "SE", "SE", "SE", "SE", "SE", "SE", "SE",
"SE", "SE", "SE", "SE", "SE", "SE", "SE", "SE", "SE", "SE", "SE",
"SE", "SE", "SE", "SE", "SE", "SE", "SE", "SE", "CH", "CH", "CH",
"CH", "CH", "CH", "CH", "CH", "CH", "CH", "CH", "CH", "CH", "CH",
"CH", "CH", "CH", "CH", "CH", "CH", "CH", "CH", "CH", "CH", "CH",
"CH", "CH", "CH", "CH", "CH", "CH", "CH", "CH", "CH", "CH", "SY",
"SY", "SY", "SY", "SY", "SY", "SY", "SY", "SY", "SY", "SY", "SY",
"SY", "SY", "SY", "SY", "SY", "SY", "SY", "SY", "SY", "SY", "SY",
"SY", "SY", "SY", "SY", "SY", "SY", "SY", "SY", "SY", "SY", "SY",
"SY", "SY", "TJ", "TJ", "TJ", "TJ", "TJ", "TJ", "TJ", "TJ", "TJ",
"TJ", "TJ", "TJ", "TJ", "TJ", "TJ", "TJ", "TJ", "TJ", "TJ", "TJ",
"TJ", "TJ", "TJ", "TJ", "TJ", "TJ", "TJ", "TJ", "TJ", "TJ", "TJ",
"TJ", "TJ", "TJ", "TJ", "TJ", "TH", "TH", "TH", "TH", "TH", "TH",
"TH", "TH", "TH", "TH", "TH", "TH", "TH", "TH", "TH", "TH", "TH",
"TH", "TH", "TH", "TH", "TH", "TH", "TH", "TH", "TH", "TH", "TH",
"TH", "TH", "TH", "TH", "TH", "TH", "TH", "TH", "TL", "TL", "TL",
"TL", "TL", "TL", "TL", "TL", "TL", "TL", "TL", "TL", "TL", "TL",
"TL", "TL", "TL", "TL", "TL", "TL", "TL", "TL", "TL", "TL", "TL",
"TL", "TG", "TG", "TG", "TG", "TG", "TG", "TG", "TG", "TG", "TG",
"TG", "TG", "TG", "TG", "TG", "TG", "TG", "TG", "TG", "TG", "TG",
"TG", "TG", "TG", "TG", "TG", "TG", "TG", "TG", "TG", "TG", "TG",
"TG", "TG", "TG", "TG", "TG", "TK", "TK", "TK", "TK", "TK", "TK",
"TK", "TK", "TO", "TO", "TO", "TO", "TO", "TO", "TO", "TO", "TO",
"TO", "TO", "TO", "TO", "TO", "TO", "TO", "TO", "TO", "TO", "TO",
"TT", "TT", "TT", "TT", "TT", "TT", "TT", "TT", "TT", "TT", "TT",
"TT", "TT", "TT", "TT", "TT", "TT", "TT", "TT", "TT", "TT", "TT",
"TT", "TT", "TT", "TT", "TT", "TT", "TT", "TT", "TN", "TN", "TN",
"TN", "TN", "TN", "TN", "TN", "TN", "TN", "TN", "TN", "TN", "TN",
"TN", "TN", "TN", "TN", "TN", "TN", "TN", "TN", "TN", "TN", "TN",
"TN", "TN", "TN", "TN", "TN", "TN", "TN", "TN", "TN", "TN", "TR",
"TR", "TR", "TR", "TR", "TR", "TR", "TR", "TR", "TR", "TR", "TR",
"TR", "TR", "TR", "TR", "TR", "TR", "TR", "TR", "TR", "TR", "TR",
"TR", "TR", "TR", "TR", "TR", "TR", "TR", "TR", "TR", "TR", "TR",
"TR", "TR", "TM", "TM", "TM", "TM", "TM", "TM", "TM", "TM", "TM",
"TM", "TM", "TM", "TM", "TM", "TM", "TM", "TM", "TM", "TM", "TM",
"TM", "TM", "TM", "TM", "TM", "TM", "TM", "TM", "TM", "TM", "TM",
"TM", "TC", "TC", "TC", "TC", "TC", "TC", "TC", "TC", "TC", "TC",
"TC", "TC", "TC", "TC", "TC", "TC", "TC", "TC", "TC", "TV", "TV",
"TV", "TV", "TV", "TV", "TV", "TV", "UG", "UG", "UG", "UG", "UG",
"UG", "UG", "UG", "UG", "UG", "UG", "UG", "UG", "UG", "UG", "UG",
"UG", "UG", "UG", "UG", "UG", "UG", "UG", "UG", "UG", "UG", "UG",
"UG", "UG", "UG", "UG", "UG", "UG", "UG", "UG", "UG", "UA", "UA",
"UA", "UA", "UA", "UA", "UA", "UA", "UA", "UA", "UA", "UA", "UA",
"UA", "UA", "UA", "UA", "UA", "UA", "UA", "UA", "UA", "UA", "UA",
"UA", "UA", "UA", "UA", "UA", "UA", "UA", "UA", "UA", "UA", "UA",
"UA", "AE", "AE", "AE", "AE", "AE", "AE", "AE", "AE", "AE", "AE",
"AE", "AE", "AE", "AE", "AE", "AE", "AE", "AE", "AE", "AE", "AE",
"AE", "AE", "AE", "AE", "AE", "AE", "AE", "AE", "AE", "AE", "AE",
"AE", "GB", "GB", "GB", "GB", "GB", "GB", "GB", "GB", "GB", "GB",
"GB", "GB", "GB", "GB", "GB", "GB", "GB", "GB", "GB", "GB", "GB",
"GB", "GB", "GB", "GB", "GB", "GB", "GB", "GB", "GB", "GB", "GB",
"GB", "GB", "GB", "GB", "TZ", "TZ", "TZ", "TZ", "TZ", "TZ", "TZ",
"TZ", "TZ", "TZ", "TZ", "TZ", "TZ", "TZ", "TZ", "TZ", "TZ", "TZ",
"TZ", "TZ", "TZ", "TZ", "TZ", "TZ", "TZ", "TZ", "TZ", "TZ", "TZ",
"TZ", "TZ", "TZ", "TZ", "TZ", "TZ", "TZ", "US", "US", "US", "US",
"US", "US", "US", "US", "US", "US", "US", "US", "US", "US", "US",
"US", "US", "US", "US", "US", "US", "US", "US", "US", "US", "US",
"US", "US", "US", "US", "US", "US", "VI", "VI", "VI", "VI", "VI",
"VI", "VI", "VI", "VI", "VI", "VI", "VI", "VI", "VI", "VI", "VI",
"UY", "UY", "UY", "UY", "UY", "UY", "UY", "UY", "UY", "UY", "UY",
"UY", "UY", "UY", "UY", "UY", "UY", "UY", "UY", "UY", "UY", "UY",
"UY", "UY", "UY", "UY", "UY", "UY", "UY", "UY", "UY", "UY", "UY",
"UZ", "UZ", "UZ", "UZ", "UZ", "UZ", "UZ", "UZ", "UZ", "UZ", "UZ",
"UZ", "UZ", "UZ", "UZ", "UZ", "UZ", "UZ", "UZ", "UZ", "UZ", "UZ",
"UZ", "UZ", "UZ", "UZ", "UZ", "UZ", "UZ", "UZ", "UZ", "UZ", "VU",
"VU", "VU", "VU", "VU", "VU", "VU", "VU", "VU", "VU", "VU", "VU",
"VU", "VU", "VU", "VU", "VU", "VU", "VU", "VU", "VU", "VU", "VE",
"VE", "VE", "VE", "VE", "VE", "VE", "VE", "VE", "VE", "VE", "VE",
"VE", "VE", "VE", "VE", "VE", "VE", "VE", "VE", "VE", "VE", "VE",
"VE", "VE", "VE", "VE", "VE", "VE", "VE", "VE", "VE", "VE", "VE",
"VN", "VN", "VN", "VN", "VN", "VN", "VN", "VN", "VN", "VN", "VN",
"VN", "VN", "VN", "VN", "VN", "VN", "VN", "VN", "VN", "VN", "VN",
"VN", "VN", "VN", "VN", "VN", "VN", "VN", "WF", "WF", "WF", "WF",
"WF", "WF", "WF", "WF", "EH", "EH", "EH", "EH", "EH", "EH", "EH",
"EH", "EH", "EH", "EH", "EH", "EH", "EH", "EH", "EH", "YE", "YE",
"YE", "YE", "YE", "YE", "YE", "YE", "YE", "YE", "YE", "YE", "YE",
"YE", "YE", "YE", "YE", "YE", "YE", "YE", "YE", "YE", "YE", "YE",
"YE", "YE", "YE", "YE", "YE", "YE", "YE", "YE", "YE", "YE", "YE",
"YE", "ZM", "ZM", "ZM", "ZM", "ZM", "ZM", "ZM", "ZM", "ZM", "ZM",
"ZM", "ZM", "ZM", "ZM", "ZM", "ZM", "ZM", "ZM", "ZM", "ZM", "ZM",
"ZM", "ZM", "ZM", "ZM", "ZM", "ZM", "ZM", "ZM", "ZM", "ZM", "ZM",
"ZM", "ZM", "ZM", "ZM", "ZW", "ZW", "ZW", "ZW", "ZW", "ZW", "ZW",
"ZW", "ZW", "ZW", "ZW", "ZW", "ZW", "ZW", "ZW", "ZW", "ZW", "ZW",
"ZW", "ZW", "ZW", "ZW", "ZW", "ZW", "ZW", "ZW", "ZW", "ZW", "ZW",
"ZW", "ZW", "ZW", "ZW", "ZW", "ZW"), Year = c(2005, 2005, 2005,
2005, 2005, 2005, 2005, 2005, 2010, 2010, 2010, 2010, 2010, 2010,
2010, 2010, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2020,
2020, 2020, 2020, 2020, 2020, 2020, 2020, 2022, 2022, 2022, 2022,
2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2010, 2010, 2010,
2010, 2010, 2010, 2010, 2015, 2015, 2015, 2015, 2015, 2015, 2015,
2015, 2020, 2020, 2020, 2020, 2020, 2020, 2020, 2020, 2022, 2022,
2022, 2022, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2010, 2010,
2010, 2010, 2010, 2010, 2010, 2015, 2015, 2015, 2015, 2015, 2015,
2015, 2020, 2020, 2020, 2020, 2020, 2020, 2020, 2022, 2022, 2022,
2005, 2005, 2010, 2010, 2015, 2015, 2020, 2020, 2005, 2005, 2010,
2010, 2015, 2015, 2020, 2020, 2005, 2005, 2005, 2005, 2005, 2005,
2005, 2005, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2015, 2015,
2015, 2015, 2015, 2015, 2015, 2015, 2020, 2020, 2020, 2020, 2020,
2020, 2020, 2020, 2022, 2022, 2022, 2022, 2005, 2005, 2010, 2010,
2015, 2015, 2018, 2018, 2020, 2020, 2020, 2020, 2022, 2022, 2005,
2005, 2005, 2005, 2010, 2010, 2010, 2010, 2015, 2015, 2015, 2015,
2015, 2015, 2020, 2020, 2020, 2020, 2020, 2020, 2020, 2022, 2022,
2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2010, 2010, 2010,
2010, 2010, 2010, 2010, 2015, 2015, 2015, 2015, 2015, 2015, 2015,
2020, 2020, 2020, 2020, 2020, 2020, 2020, 2020, 2022, 2022, 2022,
2022, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2010, 2010, 2010,
2010, 2010, 2010, 2010, 2010, 2015, 2015, 2015, 2015, 2015, 2015,
2015, 2015, 2020, 2020, 2020, 2020, 2020, 2020, 2020, 2020, 2022,
2022, 2022, 2022, 2005, 2005, 2005, 2005, 2010, 2010, 2010, 2010,
2010, 2010, 2015, 2015, 2015, 2015, 2015, 2015, 2018, 2018, 2018,
2019, 2019, 2019, 2020, 2020, 2020, 2020, 2020, 2020, 2022, 2022,
2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2010, 2010, 2010,
2010, 2010, 2010, 2010, 2010, 2015, 2015, 2015, 2015, 2015, 2015,
2015, 2020, 2020, 2020, 2020, 2020, 2020, 2020, 2022, 2022, 2022,
2022, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2010, 2010,
2010, 2010, 2010, 2010, 2010, 2010, 2015, 2015, 2015, 2015, 2015,
2015, 2015, 2015, 2020, 2020, 2020, 2020, 2020, 2020, 2020, 2020,
2022, 2022, 2022, 2022, 2005, 2005, 2005, 2005, 2005, 2005, 2005,
2005, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2015, 2015,
2015, 2015, 2015, 2015, 2015, 2015, 2020, 2020, 2020, 2020, 2020,
2020, 2020, 2020, 2022, 2022, 2022, 2022, 2005, 2005, 2005, 2005,
2010, 2010, 2010, 2010, 2010, 2010, 2010, 2015, 2015, 2015, 2015,
2015, 2015, 2015, 2015, 2016, 2016, 2016, 2016, 2020, 2020, 2020,
2020, 2020, 2020, 2020, 2021, 2021, 2021, 2022, 2022, 2005, 2005,
2005, 2005, 2005, 2005, 2010, 2010, 2010, 2010, 2010, 2010, 2010,
2015, 2015, 2015, 2015, 2015, 2015, 2015, 2020, 2020, 2020, 2020,
2020, 2020, 2020, 2022, 2022, 2022, 2005, 2005, 2005, 2005, 2005,
2005, 2005, 2005, 2010, 2010, 2010, 2010, 2010, 2010, 2015, 2015,
2015, 2015, 2015, 2015, 2015, 2020, 2020, 2020, 2020, 2020, 2020,
2020, 2022, 2022, 2022, 2022, 2005, 2005, 2005, 2005, 2010, 2010,
2010, 2010, 2015, 2015, 2015, 2015, 2015, 2015, 2019, 2019, 2019,
2020, 2020, 2020, 2020, 2020, 2020, 2021, 2021, 2005, 2005, 2005,
2005, 2005, 2005, 2005, 2005, 2010, 2010, 2010, 2010, 2010, 2010,
2010, 2010, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2020,
2020, 2020, 2020, 2020, 2020, 2020, 2020, 2022, 2022, 2022, 2022,
2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2010, 2010, 2010,
2010, 2010, 2010, 2010, 2010, 2015, 2015, 2015, 2015, 2015, 2015,
2015, 2015, 2020, 2020, 2020, 2020, 2020, 2020, 2020, 2020, 2022,
2022, 2022, 2022, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2010,
2010, 2010, 2010, 2010, 2010, 2010, 2010, 2015, 2015, 2015, 2015,
2015, 2015, 2020, 2020, 2020, 2020, 2020, 2020, 2020, 2020, 2022,
2022, 2022, 2022, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005,
2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2015, 2015, 2015,
2015, 2015, 2015, 2015, 2020, 2020, 2020, 2020, 2020, 2020, 2020,
2022, 2022, 2022, 2005, 2005, 2010, 2010, 2015, 2015, 2020, 2020,
2005, 2005, 2005, 2005, 2010, 2010, 2010, 2010, 2015, 2015, 2015,
2015, 2020, 2020, 2020, 2020, 2005, 2005, 2005, 2005, 2005, 2005,
2005, 2005, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2015,
2015, 2015, 2015, 2015, 2015, 2015, 2020, 2020, 2020, 2020, 2020,
2020, 2020, 2020, 2022, 2022, 2022, 2022, 2005, 2005, 2010, 2010,
2010, 2010, 2015, 2015, 2020, 2020, 2005, 2005, 2005, 2005, 2005,
2005, 2005, 2005, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010,
2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2020, 2020, 2020,
2020, 2020, 2020, 2020, 2020, 2022, 2022, 2022, 2022, 2005, 2005,
2005, 2005, 2005, 2005, 2005, 2005, 2010, 2010, 2010, 2010, 2010,
2010, 2010, 2010, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2020,
2020, 2020, 2020, 2020, 2020, 2020, 2020, 2022, 2022, 2022, 2022,
2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2010, 2010, 2010,
2010, 2010, 2010, 2010, 2010, 2015, 2015, 2015, 2015, 2015, 2015,
2015, 2015, 2020, 2020, 2020, 2020, 2020, 2020, 2020, 2020, 2022,
2022, 2022, 2022, 2005, 2005, 2010, 2010, 2010, 2010, 2015, 2015,
2017, 2017, 2019, 2019, 2020, 2020, 2020, 2020, 2021, 2021, 2005,
2005, 2005, 2005, 2010, 2010, 2010, 2010, 2010, 2010, 2015, 2015,
2015, 2015, 2015, 2015, 2020, 2020, 2020, 2020, 2020, 2020, 2022,
2022, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2010, 2010, 2010,
2010, 2010, 2010, 2010, 2015, 2015, 2015, 2015, 2015, 2015, 2015,
2015, 2020, 2020, 2020, 2020, 2020, 2020, 2020, 2020, 2022, 2022,
2022, 2022, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2010,
2010, 2010, 2010, 2010, 2010, 2010, 2010, 2015, 2015, 2015, 2015,
2015, 2015, 2015, 2020, 2020, 2020, 2020, 2020, 2020, 2020, 2020,
2022, 2022, 2022, 2022, 2005, 2005, 2005, 2005, 2005, 2005, 2005,
2005, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2015, 2015,
2015, 2015, 2015, 2015, 2015, 2015, 2020, 2020, 2020, 2020, 2020,
2020, 2020, 2020, 2022, 2022, 2022, 2022, 2005, 2005, 2005, 2005,
2005, 2005, 2010, 2010, 2010, 2010, 2015, 2015, 2015, 2015, 2015,
2015, 2020, 2020, 2020, 2020, 2020, 2020, 2022, 2022, 2005, 2005,
2005, 2005, 2005, 2005, 2005, 2005, 2010, 2010, 2010, 2010, 2010,
2010, 2010, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2020,
2020, 2020, 2020, 2020, 2020, 2020, 2022, 2022, 2022, 2022, 2005,
2005, 2005, 2005, 2005, 2005, 2005, 2005, 2010, 2010, 2010, 2010,
2010, 2010, 2010, 2010, 2015, 2015, 2015, 2015, 2015, 2015, 2015,
2015, 2020, 2020, 2020, 2020, 2020, 2020, 2020, 2020, 2022, 2022,
2022, 2022, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2010,
2010, 2010, 2010, 2010, 2010, 2010, 2010, 2015, 2015, 2015, 2015,
2015, 2015, 2015, 2020, 2020, 2020, 2020, 2020, 2020, 2020, 2020,
2022, 2022, 2022, 2022, 2005, 2005, 2010, 2010, 2010, 2010, 2010,
2015, 2015, 2015, 2015, 2015, 2015, 2020, 2020, 2020, 2020, 2020,
2020, 2022, 2022, 2022, 2022, 2005, 2005, 2005, 2005, 2005, 2005,
2005, 2005, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2015,
2015, 2015, 2015, 2015, 2015, 2015, 2015, 2020, 2020, 2020, 2020,
2020, 2020, 2020, 2020, 2022, 2022, 2022, 2022, 2005, 2005, 2005,
2005, 2005, 2005, 2005, 2010, 2010, 2010, 2010, 2010, 2010, 2010,
2010, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2020, 2020,
2020, 2020, 2020, 2020, 2020, 2020, 2022, 2022, 2022, 2022, 2005,
2005, 2005, 2005, 2005, 2005, 2005, 2010, 2010, 2010, 2010, 2010,
2010, 2010, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2020, 2020,
2020, 2020, 2020, 2020, 2020, 2020, 2022, 2022, 2022, 2022, 2005,
2005, 2005, 2005, 2005, 2005, 2005, 2005, 2010, 2010, 2010, 2010,
2010, 2010, 2010, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2020,
2020, 2020, 2020, 2020, 2020, 2020, 2022, 2022, 2022, 2005, 2005,
2005, 2005, 2005, 2005, 2005, 2010, 2010, 2010, 2010, 2010, 2010,
2010, 2010, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2016,
2016, 2016, 2016, 2017, 2017, 2017, 2020, 2020, 2020, 2020, 2020,
2020, 2022, 2022, 2005, 2005, 2005, 2005, 2010, 2010, 2010, 2010,
2010, 2010, 2010, 2015, 2015, 2015, 2015, 2015, 2015, 2020, 2020,
2020, 2020, 2020, 2020, 2005, 2005, 2005, 2005, 2005, 2005, 2005,
2005, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2015, 2015,
2015, 2015, 2015, 2015, 2015, 2015, 2020, 2020, 2020, 2020, 2020,
2020, 2020, 2020, 2022, 2022, 2022, 2022, 2005, 2005, 2005, 2005,
2005, 2005, 2010, 2010, 2010, 2010, 2015, 2015, 2015, 2015, 2020,
2020, 2020, 2020, 2022, 2022, 2005, 2005, 2005, 2005, 2005, 2005,
2005, 2005, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2015,
2015, 2015, 2015, 2015, 2015, 2015, 2015, 2020, 2020, 2020, 2020,
2020, 2020, 2020, 2020, 2022, 2022, 2022, 2022, 2005, 2005, 2010,
2010, 2015, 2015, 2020, 2020, 2005, 2005, 2005, 2005, 2005, 2005,
2005, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2015, 2015,
2015, 2015, 2015, 2015, 2015, 2015, 2020, 2020, 2020, 2020, 2020,
2020, 2020, 2020, 2022, 2022, 2022, 2022, 2005, 2005, 2005, 2005,
2005, 2005, 2005, 2005, 2010, 2010, 2010, 2010, 2010, 2010, 2010,
2010, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2020, 2020,
2020, 2020, 2020, 2020, 2020, 2020, 2022, 2022, 2022, 2022, 2005,
2005, 2005, 2005, 2005, 2005, 2005, 2005, 2010, 2010, 2010, 2010,
2010, 2010, 2010, 2010, 2015, 2015, 2015, 2015, 2015, 2015, 2015,
2015, 2020, 2020, 2020, 2020, 2020, 2020, 2020, 2020, 2022, 2022,
2022, 2022, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2010, 2010,
2010, 2010, 2010, 2010, 2010, 2010, 2015, 2015, 2015, 2015, 2015,
2015, 2015, 2020, 2020, 2020, 2020, 2020, 2020, 2020, 2022, 2022,
2022, 2022, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2015, 2015,
2015, 2015, 2015, 2015, 2015, 2020, 2020, 2020, 2020, 2020, 2020,
2020, 2020, 2021, 2021, 2021, 2021, 2022, 2022, 2005, 2005, 2005,
2005, 2005, 2005, 2005, 2005, 2010, 2010, 2010, 2010, 2010, 2010,
2010, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2020, 2020,
2020, 2020, 2020, 2020, 2020, 2020, 2022, 2022, 2022, 2022, 2005,
2005, 2005, 2005, 2005, 2005, 2005, 2010, 2010, 2010, 2010, 2010,
2010, 2010, 2010, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015,
2020, 2020, 2020, 2020, 2020, 2020, 2020, 2020, 2022, 2022, 2022,
2022, 2005, 2005, 2005, 2005, 2010, 2010, 2010, 2010, 2015, 2015,
2015, 2015, 2020, 2020, 2020, 2020, 2005, 2005, 2005, 2005, 2005,
2005, 2005, 2005, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010,
2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2020, 2020, 2020,
2020, 2020, 2020, 2020, 2020, 2022, 2022, 2022, 2022, 2005, 2005,
2005, 2005, 2005, 2005, 2005, 2005, 2010, 2010, 2010, 2010, 2010,
2010, 2010, 2010, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015,
2020, 2020, 2020, 2020, 2020, 2020, 2020, 2020, 2022, 2022, 2022,
2022, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2010, 2010,
2010, 2010, 2010, 2010, 2010, 2010, 2015, 2015, 2015, 2015, 2015,
2015, 2015, 2020, 2020, 2020, 2020, 2020, 2020, 2020, 2021, 2021,
2021, 2021, 2022, 2022, 2022, 2005, 2005, 2010, 2010, 2015, 2015,
2020, 2020, 2020, 2020, 2020, 2005, 2005, 2005, 2005, 2010, 2010,
2010, 2010, 2010, 2010, 2010, 2015, 2015, 2015, 2015, 2015, 2015,
2015, 2015, 2020, 2020, 2020, 2020, 2020, 2020, 2020, 2020, 2022,
2022, 2022, 2022, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005,
2010, 2010, 2010, 2010, 2010, 2010, 2010, 2015, 2015, 2015, 2015,
2015, 2015, 2015, 2020, 2020, 2020, 2020, 2020, 2020, 2020, 2020,
2022, 2022, 2022, 2022, 2005, 2005, 2005, 2005, 2005, 2005, 2005,
2005, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2015, 2015,
2015, 2015, 2015, 2015, 2015, 2015, 2020, 2020, 2020, 2020, 2020,
2020, 2020, 2022, 2022, 2022, 2022, 2005, 2005, 2005, 2005, 2005,
2005, 2005, 2005, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2015,
2015, 2015, 2015, 2015, 2015, 2020, 2020, 2020, 2020, 2020, 2020,
2020, 2020, 2022, 2022, 2022, 2022, 2005, 2005, 2005, 2005, 2010,
2010, 2010, 2010, 2015, 2015, 2015, 2015, 2020, 2020, 2020, 2020,
2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2010, 2010, 2010,
2010, 2010, 2010, 2010, 2010, 2015, 2015, 2015, 2015, 2015, 2015,
2015, 2015, 2016, 2016, 2016, 2016, 2020, 2020, 2020, 2020, 2020,
2020, 2020, 2022, 2022, 2022, 2005, 2005, 2005, 2005, 2005, 2005,
2005, 2005, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2015,
2015, 2015, 2015, 2015, 2015, 2015, 2015, 2020, 2020, 2020, 2020,
2020, 2020, 2020, 2020, 2022, 2022, 2022, 2022, 2005, 2005, 2005,
2005, 2005, 2005, 2005, 2010, 2010, 2010, 2010, 2010, 2010, 2015,
2015, 2015, 2015, 2015, 2015, 2015, 2015, 2020, 2020, 2020, 2020,
2020, 2020, 2020, 2022, 2022, 2022, 2022, 2005, 2005, 2005, 2005,
2005, 2005, 2005, 2005, 2010, 2010, 2010, 2010, 2010, 2010, 2010,
2010, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2020, 2020,
2020, 2020, 2020, 2020, 2020, 2020, 2022, 2022, 2022, 2022, 2005,
2005, 2010, 2010, 2015, 2015, 2020, 2020, 2005, 2005, 2010, 2010,
2015, 2015, 2020, 2020, 2005, 2005, 2005, 2005, 2010, 2010, 2010,
2010, 2010, 2010, 2010, 2015, 2015, 2015, 2015, 2015, 2015, 2015,
2020, 2020, 2020, 2020, 2020, 2020, 2020, 2021, 2021, 2021, 2022,
2022, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2010, 2010, 2010,
2010, 2010, 2010, 2010, 2010, 2015, 2015, 2015, 2015, 2015, 2015,
2015, 2015, 2020, 2020, 2020, 2020, 2020, 2020, 2020, 2020, 2022,
2022, 2022, 2022, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005,
2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2015, 2015, 2015,
2015, 2015, 2015, 2015, 2015, 2020, 2020, 2020, 2020, 2020, 2020,
2020, 2020, 2022, 2022, 2022, 2022, 2005, 2005, 2005, 2005, 2010,
2010, 2010, 2010, 2015, 2015, 2015, 2015, 2020, 2020, 2020, 2020,
2005, 2005, 2005, 2005, 2010, 2010, 2010, 2010, 2015, 2015, 2015,
2015, 2020, 2020, 2020, 2020, 2005, 2005, 2005, 2005, 2005, 2005,
2005, 2005, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2015,
2015, 2015, 2015, 2015, 2015, 2015, 2017, 2017, 2017, 2017, 2020,
2020, 2020, 2020, 2020, 2020, 2020, 2022, 2022, 2022, 2005, 2005,
2005, 2005, 2005, 2005, 2005, 2005, 2010, 2010, 2010, 2010, 2010,
2010, 2010, 2010, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2018,
2018, 2018, 2018, 2020, 2020, 2020, 2020, 2020, 2020, 2020, 2022,
2022, 2022, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2010,
2010, 2010, 2010, 2010, 2010, 2010, 2010, 2015, 2015, 2015, 2015,
2015, 2015, 2015, 2015, 2020, 2020, 2020, 2020, 2020, 2020, 2020,
2020, 2022, 2022, 2022, 2022, 2005, 2005, 2005, 2005, 2005, 2005,
2005, 2005, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2015,
2015, 2015, 2015, 2015, 2015, 2015, 2015, 2020, 2020, 2020, 2020,
2020, 2020, 2020, 2020, 2022, 2022, 2022, 2022, 2005, 2005, 2005,
2005, 2005, 2005, 2005, 2005, 2010, 2010, 2010, 2010, 2010, 2010,
2010, 2010, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2016, 2016,
2016, 2016, 2020, 2020, 2020, 2020, 2020, 2020, 2020, 2022, 2022,
2022, 2005, 2005, 2010, 2010, 2015, 2015, 2020, 2020, 2005, 2005,
2005, 2005, 2005, 2005, 2005, 2005, 2010, 2010, 2010, 2010, 2010,
2010, 2010, 2010, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015,
2020, 2020, 2020, 2020, 2020, 2020, 2020, 2020, 2022, 2022, 2022,
2022, 2005, 2005, 2010, 2010, 2015, 2015, 2020, 2020, 2005, 2005,
2005, 2005, 2010, 2010, 2010, 2010, 2010, 2010, 2015, 2015, 2015,
2015, 2018, 2018, 2018, 2020, 2020, 2020, 2020, 2020, 2020, 2022,
2022, 2005, 2005, 2005, 2005, 2010, 2010, 2010, 2010, 2015, 2015,
2015, 2015, 2020, 2020, 2020, 2020, 2005, 2005, 2005, 2005, 2010,
2010, 2010, 2010, 2015, 2015, 2015, 2015, 2020, 2020, 2020, 2020,
2005, 2005, 2005, 2005, 2005, 2005, 2005, 2010, 2010, 2010, 2010,
2010, 2010, 2010, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2020,
2020, 2020, 2020, 2020, 2020, 2020, 2020, 2022, 2022, 2022, 2022,
2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2010, 2010, 2010,
2010, 2010, 2010, 2010, 2010, 2015, 2015, 2015, 2015, 2015, 2015,
2015, 2017, 2017, 2017, 2017, 2020, 2020, 2020, 2020, 2020, 2020,
2020, 2022, 2022, 2022, 2005, 2005, 2005, 2005, 2005, 2005, 2005,
2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2015, 2015, 2015,
2015, 2015, 2015, 2015, 2020, 2020, 2020, 2020, 2020, 2020, 2020,
2022, 2022, 2022, 2005, 2005, 2005, 2005, 2010, 2010, 2010, 2010,
2010, 2010, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2020, 2020,
2020, 2020, 2020, 2020, 2020, 2020, 2022, 2022, 2022, 2022, 2005,
2005, 2005, 2005, 2010, 2010, 2010, 2010, 2010, 2010, 2015, 2015,
2015, 2015, 2015, 2015, 2015, 2019, 2019, 2019, 2019, 2020, 2020,
2020, 2020, 2020, 2020, 2020, 2021, 2021, 2005, 2005, 2010, 2010,
2015, 2015, 2020, 2020, 2005, 2005, 2005, 2005, 2005, 2005, 2005,
2010, 2010, 2010, 2010, 2010, 2010, 2010, 2015, 2015, 2015, 2015,
2015, 2015, 2015, 2020, 2020, 2020, 2020, 2020, 2020, 2020, 2020,
2022, 2022, 2022, 2022, 2005, 2005, 2005, 2005, 2005, 2005, 2005,
2005, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2015, 2015,
2015, 2015, 2015, 2015, 2015, 2015, 2020, 2020, 2020, 2020, 2020,
2020, 2020, 2020, 2022, 2022, 2022, 2022, 2005, 2005, 2005, 2005,
2005, 2005, 2005, 2005, 2010, 2010, 2010, 2010, 2010, 2010, 2010,
2010, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2020, 2020,
2020, 2020, 2020, 2020, 2020, 2020, 2022, 2022, 2022, 2022, 2005,
2005, 2005, 2005, 2005, 2005, 2005, 2005, 2010, 2010, 2010, 2010,
2010, 2010, 2010, 2010, 2015, 2015, 2015, 2015, 2015, 2015, 2015,
2020, 2020, 2020, 2020, 2020, 2020, 2020, 2022, 2022, 2022, 2022,
2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2010, 2010, 2010,
2010, 2010, 2010, 2010, 2010, 2015, 2015, 2015, 2015, 2015, 2015,
2015, 2020, 2020, 2020, 2020, 2020, 2020, 2020, 2022, 2022, 2022,
2022, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2010, 2010,
2010, 2010, 2010, 2010, 2010, 2010, 2015, 2015, 2015, 2015, 2015,
2015, 2015, 2015, 2020, 2020, 2020, 2020, 2020, 2020, 2020, 2020,
2022, 2022, 2022, 2022, 2005, 2005, 2005, 2005, 2005, 2005, 2005,
2005, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2015, 2015,
2015, 2015, 2015, 2015, 2015, 2015, 2020, 2020, 2020, 2020, 2020,
2020, 2020, 2020, 2022, 2022, 2022, 2022, 2005, 2005, 2005, 2005,
2005, 2005, 2005, 2005, 2010, 2010, 2010, 2010, 2010, 2010, 2010,
2010, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2020, 2020,
2020, 2020, 2020, 2020, 2020, 2020, 2022, 2022, 2022, 2022, 2005,
2005, 2010, 2010, 2015, 2015, 2020, 2020, 2005, 2005, 2005, 2005,
2005, 2005, 2005, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010,
2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2020, 2020, 2020,
2020, 2020, 2020, 2020, 2020, 2022, 2022, 2022, 2022, 2005, 2005,
2005, 2005, 2005, 2005, 2005, 2010, 2010, 2010, 2010, 2010, 2010,
2010, 2010, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2020,
2020, 2020, 2020, 2020, 2020, 2020, 2020, 2022, 2022, 2022, 2022,
2005, 2005, 2005, 2005, 2010, 2010, 2010, 2010, 2010, 2010, 2015,
2015, 2015, 2015, 2015, 2015, 2015, 2020, 2020, 2020, 2020, 2020,
2020, 2020, 2020, 2022, 2022, 2022, 2022, 2005, 2005, 2005, 2005,
2005, 2005, 2005, 2005, 2010, 2010, 2010, 2010, 2010, 2010, 2010,
2010, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2020, 2020,
2020, 2020, 2020, 2020, 2020, 2020, 2022, 2022, 2022, 2022, 2005,
2005, 2005, 2005, 2005, 2005, 2005, 2005, 2010, 2010, 2010, 2010,
2010, 2010, 2010, 2010, 2015, 2015, 2015, 2015, 2015, 2015, 2015,
2020, 2020, 2020, 2020, 2020, 2020, 2020, 2020, 2022, 2022, 2022,
2022, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2010, 2010,
2010, 2010, 2010, 2010, 2010, 2010, 2015, 2015, 2015, 2015, 2015,
2015, 2015, 2015, 2020, 2020, 2020, 2020, 2020, 2020, 2020, 2020,
2022, 2022, 2022, 2022, 2005, 2005, 2005, 2005, 2005, 2005, 2005,
2005, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2015, 2015,
2015, 2015, 2015, 2015, 2015, 2015, 2020, 2020, 2020, 2020, 2020,
2020, 2020, 2020, 2022, 2022, 2022, 2022, 2005, 2005, 2005, 2005,
2010, 2010, 2010, 2010, 2015, 2015, 2015, 2015, 2020, 2020, 2020,
2020, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2010, 2010,
2010, 2010, 2010, 2010, 2010, 2010, 2015, 2015, 2015, 2015, 2015,
2015, 2015, 2015, 2020, 2020, 2020, 2020, 2020, 2020, 2020, 2020,
2022, 2022, 2022, 2022, 2005, 2005, 2005, 2005, 2005, 2005, 2005,
2005, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2015, 2015,
2015, 2015, 2015, 2015, 2015, 2015, 2020, 2020, 2020, 2020, 2020,
2020, 2020, 2020, 2022, 2022, 2022, 2022, 2005, 2005, 2005, 2005,
2010, 2010, 2010, 2010, 2015, 2015, 2015, 2015, 2020, 2020, 2020,
2020, 2020, 2020, 2020, 2005, 2005, 2005, 2005, 2005, 2005, 2005,
2005, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2015, 2015,
2015, 2015, 2015, 2015, 2015, 2015, 2020, 2020, 2020, 2020, 2020,
2020, 2020, 2020, 2022, 2022, 2022, 2022, 2005, 2005, 2005, 2005,
2005, 2005, 2005, 2005, 2010, 2010, 2010, 2010, 2010, 2010, 2010,
2010, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2020, 2020,
2020, 2020, 2020, 2020, 2020, 2020, 2022, 2022, 2022, 2022, 2005,
2005, 2005, 2005, 2010, 2010, 2010, 2010, 2015, 2015, 2015, 2015,
2015, 2015, 2015, 2020, 2020, 2020, 2020, 2020, 2020, 2020, 2022,
2022, 2022, 2022, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005,
2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2015, 2015, 2015,
2015, 2015, 2015, 2015, 2015, 2020, 2020, 2020, 2020, 2020, 2020,
2020, 2020, 2022, 2022, 2022, 2005, 2005, 2005, 2005, 2005, 2005,
2005, 2005, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2015,
2015, 2015, 2015, 2015, 2015, 2015, 2015, 2020, 2020, 2020, 2020,
2020, 2020, 2020, 2020, 2022, 2022, 2022, 2022, 2005, 2005, 2005,
2005, 2005, 2010, 2010, 2010, 2010, 2010, 2010, 2015, 2015, 2015,
2015, 2015, 2015, 2020, 2020, 2020, 2020, 2020, 2022, 2022, 2022,
2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2010, 2010, 2010,
2010, 2010, 2010, 2010, 2010, 2015, 2015, 2015, 2015, 2015, 2015,
2015, 2015, 2020, 2020, 2020, 2020, 2020, 2020, 2020, 2020, 2022,
2022, 2022, 2022, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2010,
2010, 2010, 2010, 2010, 2010, 2010, 2010, 2015, 2015, 2015, 2015,
2015, 2015, 2015, 2015, 2020, 2020, 2020, 2020, 2020, 2020, 2020,
2020, 2022, 2022, 2022, 2022, 2005, 2005, 2005, 2005, 2010, 2010,
2010, 2010, 2010, 2010, 2015, 2015, 2015, 2015, 2015, 2015, 2015,
2020, 2020, 2020, 2020, 2020, 2020, 2020, 2022, 2022, 2022, 2022,
2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2010, 2010, 2010,
2010, 2010, 2010, 2010, 2010, 2015, 2015, 2015, 2015, 2015, 2015,
2015, 2020, 2020, 2020, 2020, 2020, 2020, 2020, 2020, 2022, 2022,
2022, 2022, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2010,
2010, 2010, 2010, 2010, 2010, 2010, 2010, 2015, 2015, 2015, 2015,
2015, 2015, 2015, 2015, 2020, 2020, 2020, 2020, 2020, 2020, 2020,
2020, 2022, 2022, 2022, 2022, 2005, 2005, 2005, 2005, 2010, 2010,
2010, 2010, 2015, 2015, 2015, 2015, 2020, 2020, 2020, 2020, 2005,
2005, 2005, 2005, 2005, 2005, 2005, 2010, 2010, 2010, 2010, 2010,
2010, 2010, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2020,
2020, 2020, 2020, 2020, 2020, 2020, 2020, 2022, 2022, 2022, 2022,
2005, 2005, 2005, 2005, 2005, 2005, 2005, 2010, 2010, 2010, 2010,
2010, 2010, 2010, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2020,
2020, 2020, 2020, 2020, 2020, 2020, 2022, 2022, 2022, 2022, 2005,
2005, 2010, 2010, 2015, 2015, 2020, 2020, 2005, 2005, 2005, 2005,
2010, 2010, 2010, 2010, 2015, 2015, 2015, 2015, 2020, 2020, 2020,
2020, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2010, 2010,
2010, 2010, 2010, 2010, 2010, 2010, 2015, 2015, 2015, 2015, 2015,
2015, 2015, 2020, 2020, 2020, 2020, 2020, 2020, 2020, 2022, 2022,
2022, 2005, 2005, 2005, 2005, 2010, 2010, 2010, 2010, 2015, 2015,
2015, 2015, 2020, 2020, 2020, 2020, 2020, 2020, 2020, 2022, 2022,
2005, 2005, 2005, 2005, 2010, 2010, 2010, 2010, 2015, 2015, 2015,
2015, 2020, 2020, 2020, 2020, 2005, 2005, 2005, 2005, 2005, 2005,
2005, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2015, 2015,
2015, 2015, 2015, 2015, 2015, 2020, 2020, 2020, 2020, 2020, 2020,
2020, 2020, 2022, 2022, 2022, 2022, 2005, 2005, 2005, 2005, 2010,
2010, 2010, 2010, 2015, 2015, 2015, 2015, 2015, 2015, 2016, 2016,
2016, 2017, 2017, 2020, 2020, 2020, 2020, 2005, 2005, 2010, 2010,
2010, 2010, 2015, 2015, 2015, 2015, 2020, 2020, 2020, 2020, 2022,
2022, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2010, 2010, 2010,
2010, 2010, 2010, 2010, 2010, 2015, 2015, 2015, 2015, 2015, 2015,
2015, 2015, 2020, 2020, 2020, 2020, 2020, 2020, 2020, 2020, 2022,
2022, 2022, 2022, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010,
2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2020, 2020, 2020,
2020, 2020, 2020, 2020, 2020, 2022, 2022, 2022, 2022, 2005, 2005,
2010, 2010, 2010, 2010, 2015, 2015, 2020, 2020, 2005, 2005, 2005,
2005, 2005, 2005, 2005, 2005, 2010, 2010, 2010, 2010, 2010, 2010,
2010, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2020, 2020, 2020,
2020, 2020, 2020, 2020, 2022, 2022, 2022, 2005, 2005, 2005, 2005,
2005, 2005, 2005, 2005, 2010, 2010, 2010, 2010, 2010, 2010, 2010,
2010, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2020, 2020,
2020, 2020, 2020, 2020, 2020, 2020, 2022, 2022, 2022, 2022, 2005,
2005, 2005, 2005, 2005, 2005, 2010, 2010, 2010, 2010, 2010, 2010,
2015, 2015, 2015, 2015, 2015, 2015, 2016, 2016, 2016, 2020, 2020,
2020, 2020, 2020, 2020, 2022, 2022, 2005, 2005, 2005, 2005, 2005,
2005, 2005, 2005, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010,
2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2020, 2020, 2020,
2020, 2020, 2020, 2020, 2020, 2022, 2022, 2022, 2022, 2005, 2005,
2010, 2010, 2015, 2015, 2015, 2015, 2015, 2020, 2020, 2020, 2020,
2020, 2022, 2022, 2022, 2022, 2005, 2005, 2005, 2005, 2005, 2005,
2005, 2005, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2015,
2015, 2015, 2015, 2015, 2015, 2015, 2015, 2020, 2020, 2020, 2020,
2020, 2020, 2020, 2020, 2022, 2022, 2022, 2022, 2005, 2005, 2005,
2005, 2005, 2005, 2005, 2005, 2010, 2010, 2010, 2010, 2010, 2010,
2010, 2010, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2020,
2020, 2020, 2020, 2020, 2020, 2020, 2020, 2022, 2022, 2022, 2022,
2005, 2005, 2005, 2005, 2010, 2010, 2010, 2010, 2015, 2015, 2015,
2015, 2020, 2020, 2020, 2020, 2005, 2005, 2005, 2005, 2005, 2005,
2005, 2005, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2015,
2015, 2015, 2015, 2015, 2015, 2015, 2020, 2020, 2020, 2020, 2020,
2020, 2020, 2022, 2022, 2022, 2022, 2005, 2005, 2005, 2005, 2005,
2005, 2005, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2015, 2015,
2015, 2015, 2015, 2015, 2015, 2015, 2020, 2020, 2020, 2020, 2020,
2020, 2020, 2020, 2022, 2022, 2022, 2022, 2005, 2005, 2005, 2005,
2005, 2005, 2005, 2005, 2010, 2010, 2010, 2010, 2010, 2010, 2010,
2010, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2020, 2020,
2020, 2020, 2020, 2020, 2020, 2020, 2022, 2022, 2022, 2022, 2005,
2005, 2005, 2005, 2005, 2005, 2005, 2005, 2010, 2010, 2010, 2010,
2010, 2010, 2010, 2010, 2015, 2015, 2015, 2015, 2015, 2015, 2015,
2015, 2020, 2020, 2020, 2020, 2020, 2020, 2020, 2020, 2022, 2022,
2022, 2022, 2005, 2005, 2010, 2010, 2015, 2015, 2020, 2020, 2005,
2005, 2005, 2005, 2005, 2005, 2005, 2005, 2010, 2010, 2010, 2010,
2010, 2010, 2010, 2010, 2015, 2015, 2015, 2015, 2015, 2015, 2015,
2015, 2020, 2020, 2020, 2020, 2020, 2020, 2020, 2020, 2022, 2022,
2022, 2022, 2005, 2005, 2010, 2010, 2015, 2015, 2020, 2020, 2005,
2005, 2005, 2005, 2005, 2005, 2005, 2010, 2010, 2010, 2010, 2010,
2010, 2010, 2010, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015,
2020, 2020, 2020, 2020, 2020, 2020, 2020, 2020, 2022, 2022, 2022,
2022, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2010, 2010, 2010,
2010, 2010, 2010, 2010, 2015, 2015, 2015, 2015, 2015, 2015, 2015,
2020, 2020, 2020, 2020, 2020, 2020, 2020, 2022, 2022, 2022, 2005,
2005, 2005, 2005, 2005, 2005, 2005, 2005, 2010, 2010, 2010, 2010,
2010, 2010, 2010, 2010, 2015, 2015, 2015, 2015, 2015, 2015, 2015,
2015, 2020, 2020, 2020, 2020, 2020, 2020, 2020, 2020, 2022, 2022,
2022, 2022, 2005, 2005, 2010, 2010, 2015, 2015, 2015, 2015, 2016,
2016, 2017, 2017, 2020, 2020, 2005, 2005, 2005, 2005, 2005, 2005,
2005, 2005, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2015,
2015, 2015, 2015, 2015, 2015, 2015, 2015, 2020, 2020, 2020, 2020,
2020, 2020, 2020, 2020, 2022, 2022, 2022, 2022, 2005, 2005, 2005,
2005, 2005, 2005, 2005, 2005, 2010, 2010, 2010, 2010, 2010, 2010,
2010, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2020, 2020, 2020,
2020, 2020, 2020, 2020, 2022, 2022, 2022, 2022, 2005, 2005, 2005,
2005, 2005, 2005, 2005, 2010, 2010, 2010, 2010, 2010, 2010, 2010,
2015, 2015, 2015, 2015, 2015, 2015, 2015, 2020, 2020, 2020, 2020,
2020, 2020, 2020, 2020, 2022, 2022, 2022, 2022, 2005, 2005, 2005,
2005, 2005, 2005, 2005, 2005, 2010, 2010, 2010, 2010, 2010, 2010,
2010, 2010, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2020, 2020,
2020, 2020, 2020, 2020, 2020, 2020, 2022, 2022, 2022, 2022, 2005,
2005, 2005, 2005, 2005, 2005, 2005, 2005, 2010, 2010, 2010, 2010,
2010, 2010, 2010, 2010, 2015, 2015, 2015, 2015, 2015, 2015, 2015,
2015, 2020, 2020, 2020, 2020, 2020, 2020, 2020, 2020, 2022, 2022,
2022, 2022, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2010,
2010, 2010, 2010, 2010, 2010, 2010, 2010, 2015, 2015, 2015, 2015,
2015, 2015, 2015, 2015, 2020, 2020, 2020, 2020, 2020, 2020, 2020,
2020, 2022, 2022, 2022, 2022, 2005, 2005, 2005, 2005, 2005, 2005,
2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2015, 2015, 2015,
2015, 2015, 2015, 2015, 2015, 2020, 2020, 2020, 2020, 2020, 2020,
2020, 2020, 2022, 2022, 2022, 2022, 2005, 2005, 2005, 2005, 2010,
2010, 2010, 2010, 2015, 2015, 2015, 2015, 2020, 2020, 2020, 2020,
2005, 2005, 2005, 2005, 2005, 2005, 2005, 2010, 2010, 2010, 2010,
2010, 2010, 2010, 2010, 2015, 2015, 2015, 2015, 2015, 2015, 2015,
2015, 2020, 2020, 2020, 2020, 2020, 2020, 2020, 2020, 2022, 2022,
2022, 2022, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2010, 2010,
2010, 2010, 2010, 2010, 2010, 2010, 2015, 2015, 2015, 2015, 2015,
2015, 2015, 2015, 2020, 2020, 2020, 2020, 2020, 2020, 2020, 2020,
2022, 2022, 2022, 2022, 2005, 2005, 2005, 2005, 2005, 2005, 2005,
2005, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2015, 2015,
2015, 2015, 2015, 2015, 2015, 2015, 2020, 2020, 2020, 2020, 2020,
2020, 2020, 2020, 2022, 2022, 2022, 2022, 2005, 2005, 2005, 2005,
2010, 2010, 2010, 2010, 2015, 2015, 2015, 2015, 2020, 2020, 2020,
2020, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2010, 2010,
2010, 2010, 2010, 2010, 2010, 2010, 2015, 2015, 2015, 2015, 2015,
2015, 2015, 2015, 2020, 2020, 2020, 2020, 2020, 2020, 2020, 2020,
2022, 2022, 2022, 2022, 2005, 2005, 2005, 2005, 2005, 2005, 2005,
2005, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2015, 2015,
2015, 2015, 2015, 2015, 2015, 2015, 2020, 2020, 2020, 2020, 2020,
2020, 2020, 2020, 2022, 2022, 2022, 2022, 2005, 2005, 2005, 2005,
2005, 2005, 2005, 2005, 2010, 2010, 2010, 2010, 2010, 2010, 2010,
2010, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2020, 2020,
2020, 2020, 2020, 2020, 2020, 2020, 2022, 2022, 2022, 2022, 2005,
2005, 2010, 2010, 2015, 2015, 2020, 2020, 2005, 2005, 2010, 2010,
2015, 2015, 2015, 2015, 2020, 2020, 2020, 2020, 2022, 2022, 2005,
2005, 2005, 2005, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2015,
2015, 2015, 2015, 2015, 2015, 2015, 2015, 2020, 2020, 2020, 2020,
2020, 2020, 2020, 2005, 2005, 2010, 2010, 2015, 2015, 2020, 2020,
2005, 2005, 2005, 2005, 2010, 2010, 2010, 2010, 2015, 2015, 2015,
2015, 2020, 2020, 2020, 2020, 2020, 2020, 2022, 2022, 2005, 2005,
2005, 2005, 2010, 2010, 2010, 2010, 2015, 2015, 2015, 2015, 2018,
2018, 2020, 2020, 2020, 2020, 2020, 2020, 2005, 2005, 2010, 2010,
2015, 2015, 2020, 2020, 2005, 2005, 2005, 2005, 2010, 2010, 2010,
2010, 2015, 2015, 2015, 2015, 2020, 2020, 2020, 2020, 2005, 2005,
2005, 2005, 2005, 2005, 2005, 2005, 2010, 2010, 2010, 2010, 2010,
2010, 2010, 2010, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015,
2020, 2020, 2020, 2020, 2020, 2020, 2020, 2020, 2022, 2022, 2022,
2022, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2010, 2010,
2010, 2010, 2010, 2010, 2010, 2010, 2015, 2015, 2015, 2015, 2015,
2015, 2015, 2020, 2020, 2020, 2020, 2020, 2020, 2020, 2021, 2021,
2021, 2021, 2022, 2022, 2022, 2005, 2005, 2005, 2005, 2005, 2005,
2005, 2005, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2015,
2015, 2015, 2015, 2015, 2015, 2015, 2015, 2020, 2020, 2020, 2020,
2020, 2020, 2020, 2020, 2022, 2022, 2022, 2022, 2005, 2005, 2005,
2005, 2010, 2010, 2010, 2010, 2015, 2015, 2015, 2015, 2018, 2018,
2020, 2020, 2020, 2020, 2005, 2005, 2005, 2005, 2005, 2005, 2005,
2005, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2015, 2015,
2015, 2015, 2015, 2015, 2015, 2017, 2017, 2017, 2020, 2020, 2020,
2020, 2020, 2020, 2020, 2022, 2022, 2005, 2005, 2005, 2005, 2005,
2005, 2005, 2010, 2010, 2010, 2010, 2010, 2010, 2015, 2015, 2015,
2015, 2015, 2015, 2020, 2020, 2020, 2020, 2020, 2020, 2020, 2022,
2022, 2005, 2005, 2010, 2010, 2010, 2010, 2010, 2015, 2015, 2015,
2015, 2015, 2020, 2020, 2020, 2020, 2020, 2020, 2022, 2022, 2005,
2005, 2005, 2005, 2005, 2005, 2005, 2010, 2010, 2010, 2010, 2010,
2010, 2010, 2010, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015,
2020, 2020, 2020, 2020, 2020, 2020, 2020, 2020, 2022, 2022, 2022,
2022, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2010, 2010,
2010, 2010, 2010, 2010, 2010, 2010, 2015, 2015, 2015, 2015, 2015,
2015, 2015, 2015, 2020, 2020, 2020, 2020, 2020, 2020, 2020, 2020,
2021, 2021, 2021, 2021, 2022, 2022, 2022, 2005, 2005, 2005, 2005,
2010, 2010, 2010, 2010, 2015, 2015, 2015, 2015, 2015, 2015, 2016,
2016, 2019, 2019, 2020, 2020, 2020, 2020, 2005, 2005, 2005, 2005,
2005, 2005, 2005, 2005, 2010, 2010, 2010, 2010, 2010, 2010, 2010,
2010, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2020, 2020,
2020, 2020, 2020, 2020, 2020, 2020, 2022, 2022, 2022, 2022, 2005,
2005, 2005, 2005, 2005, 2005, 2005, 2005, 2010, 2010, 2010, 2010,
2010, 2010, 2010, 2010, 2015, 2015, 2015, 2015, 2015, 2015, 2015,
2020, 2020, 2020, 2020, 2020, 2020, 2020, 2022, 2022, 2022, 2010,
2010, 2010, 2010, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015,
2020, 2020, 2020, 2020, 2020, 2020, 2020, 2020, 2022, 2022, 2022,
2022, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2010, 2010, 2010,
2010, 2010, 2010, 2010, 2010, 2015, 2015, 2015, 2015, 2015, 2015,
2015, 2015, 2020, 2020, 2020, 2020, 2020, 2020, 2020, 2020, 2022,
2022, 2022, 2022, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005,
2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2015, 2015, 2015,
2015, 2015, 2015, 2015, 2015, 2020, 2020, 2020, 2020, 2020, 2020,
2020, 2020, 2022, 2022, 2022, 2022, 2005, 2005, 2005, 2005, 2010,
2010, 2010, 2010, 2015, 2015, 2015, 2015, 2015, 2015, 2020, 2020,
2020, 2020, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2010,
2010, 2010, 2010, 2010, 2010, 2010, 2010, 2015, 2015, 2015, 2015,
2015, 2015, 2015, 2015, 2020, 2020, 2020, 2020, 2020, 2020, 2020,
2020, 2022, 2022, 2022, 2022, 2005, 2005, 2005, 2005, 2010, 2010,
2010, 2010, 2010, 2010, 2010, 2015, 2015, 2015, 2015, 2015, 2015,
2018, 2018, 2018, 2018, 2020, 2020, 2020, 2020, 2020, 2020, 2020,
2022, 2022, 2022, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005,
2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2015, 2015, 2015,
2015, 2015, 2015, 2015, 2015, 2020, 2020, 2020, 2020, 2020, 2020,
2020, 2020, 2022, 2022, 2022, 2022, 2005, 2005, 2005, 2005, 2005,
2005, 2005, 2005, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010,
2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2020, 2020, 2020,
2020, 2020, 2020, 2020, 2022, 2022, 2022, 2022, 2005, 2005, 2005,
2005, 2005, 2005, 2005, 2005, 2010, 2010, 2010, 2010, 2010, 2010,
2010, 2010, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2020,
2020, 2020, 2020, 2020, 2020, 2020, 2020, 2022, 2022, 2022, 2022,
2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2010, 2010, 2010,
2010, 2010, 2010, 2010, 2010, 2015, 2015, 2015, 2015, 2015, 2015,
2015, 2015, 2020, 2020, 2020, 2020, 2020, 2020, 2020, 2020, 2022,
2022, 2022, 2022, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005,
2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2015, 2015, 2015,
2015, 2015, 2015, 2015, 2015, 2020, 2020, 2020, 2020, 2020, 2020,
2020, 2020, 2022, 2022, 2022, 2022, 2005, 2005, 2005, 2005, 2005,
2005, 2005, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2015, 2015,
2015, 2015, 2015, 2015, 2019, 2019, 2020, 2020, 2020, 2020, 2005,
2005, 2005, 2005, 2005, 2005, 2005, 2005, 2010, 2010, 2010, 2010,
2010, 2010, 2010, 2010, 2015, 2015, 2015, 2015, 2015, 2015, 2015,
2019, 2019, 2019, 2019, 2020, 2020, 2020, 2020, 2020, 2020, 2020,
2022, 2022, 2022, 2005, 2005, 2010, 2010, 2015, 2015, 2020, 2020,
2005, 2005, 2005, 2005, 2010, 2010, 2010, 2010, 2010, 2010, 2015,
2015, 2015, 2015, 2020, 2020, 2020, 2020, 2020, 2020, 2005, 2005,
2005, 2005, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2015, 2015,
2015, 2015, 2015, 2015, 2015, 2020, 2020, 2020, 2020, 2020, 2020,
2020, 2020, 2022, 2022, 2022, 2022, 2005, 2005, 2005, 2005, 2005,
2005, 2005, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2015,
2015, 2015, 2015, 2015, 2015, 2015, 2015, 2020, 2020, 2020, 2020,
2020, 2020, 2020, 2020, 2022, 2022, 2022, 2022, 2005, 2005, 2005,
2005, 2005, 2005, 2005, 2005, 2010, 2010, 2010, 2010, 2010, 2010,
2010, 2010, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2020,
2020, 2020, 2020, 2020, 2020, 2020, 2020, 2022, 2022, 2022, 2022,
2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2010, 2010, 2010,
2010, 2010, 2010, 2010, 2015, 2015, 2015, 2015, 2015, 2015, 2015,
2020, 2020, 2020, 2020, 2020, 2020, 2020, 2022, 2022, 2022, 2005,
2005, 2010, 2010, 2015, 2015, 2015, 2015, 2015, 2020, 2020, 2020,
2020, 2020, 2021, 2021, 2021, 2022, 2022, 2005, 2005, 2010, 2010,
2015, 2015, 2020, 2020, 2005, 2005, 2005, 2005, 2005, 2005, 2005,
2005, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2015, 2015,
2015, 2015, 2015, 2015, 2015, 2015, 2020, 2020, 2020, 2020, 2020,
2020, 2020, 2020, 2022, 2022, 2022, 2022, 2005, 2005, 2005, 2005,
2005, 2005, 2005, 2005, 2010, 2010, 2010, 2010, 2010, 2010, 2010,
2010, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2020, 2020,
2020, 2020, 2020, 2020, 2020, 2020, 2022, 2022, 2022, 2022, 2005,
2005, 2005, 2005, 2005, 2005, 2005, 2010, 2010, 2010, 2010, 2010,
2010, 2010, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2020, 2020,
2020, 2020, 2020, 2020, 2020, 2020, 2022, 2022, 2022, 2022, 2005,
2005, 2005, 2005, 2005, 2005, 2005, 2005, 2010, 2010, 2010, 2010,
2010, 2010, 2010, 2010, 2015, 2015, 2015, 2015, 2015, 2015, 2015,
2015, 2020, 2020, 2020, 2020, 2020, 2020, 2020, 2020, 2022, 2022,
2022, 2022, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2010,
2010, 2010, 2010, 2010, 2010, 2010, 2010, 2015, 2015, 2015, 2015,
2015, 2015, 2015, 2015, 2020, 2020, 2020, 2020, 2020, 2020, 2020,
2020, 2022, 2022, 2022, 2022, 2005, 2005, 2005, 2005, 2005, 2005,
2005, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2015, 2015, 2015,
2015, 2015, 2015, 2015, 2020, 2020, 2020, 2020, 2020, 2020, 2020,
2022, 2022, 2022, 2022, 2005, 2005, 2005, 2005, 2010, 2010, 2010,
2010, 2015, 2015, 2015, 2015, 2020, 2020, 2020, 2020, 2005, 2005,
2005, 2005, 2005, 2005, 2005, 2010, 2010, 2010, 2010, 2010, 2010,
2010, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2020, 2020, 2020,
2020, 2020, 2020, 2020, 2020, 2022, 2022, 2022, 2022, 2005, 2005,
2005, 2005, 2005, 2005, 2005, 2005, 2010, 2010, 2010, 2010, 2010,
2010, 2010, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2020, 2020,
2020, 2020, 2020, 2020, 2020, 2022, 2022, 2022, 2005, 2005, 2005,
2005, 2010, 2010, 2010, 2010, 2010, 2010, 2015, 2015, 2015, 2015,
2015, 2015, 2020, 2020, 2020, 2020, 2021, 2021, 2005, 2005, 2005,
2005, 2005, 2005, 2005, 2005, 2010, 2010, 2010, 2010, 2010, 2010,
2010, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2020, 2020, 2020,
2020, 2020, 2020, 2020, 2020, 2022, 2022, 2022, 2022, 2005, 2005,
2005, 2005, 2005, 2005, 2005, 2010, 2010, 2010, 2010, 2010, 2010,
2010, 2015, 2015, 2015, 2015, 2015, 2015, 2020, 2020, 2020, 2020,
2020, 2020, 2020, 2022, 2022, 2005, 2005, 2010, 2010, 2015, 2015,
2020, 2020, 2005, 2005, 2005, 2005, 2010, 2010, 2010, 2010, 2015,
2015, 2015, 2015, 2020, 2020, 2020, 2020, 2005, 2005, 2005, 2005,
2005, 2005, 2005, 2005, 2010, 2010, 2010, 2010, 2010, 2010, 2010,
2010, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2020, 2020,
2020, 2020, 2020, 2020, 2020, 2020, 2022, 2022, 2022, 2022, 2005,
2005, 2005, 2005, 2005, 2005, 2005, 2005, 2010, 2010, 2010, 2010,
2010, 2010, 2010, 2010, 2015, 2015, 2015, 2015, 2015, 2015, 2015,
2015, 2020, 2020, 2020, 2020, 2020, 2020, 2020, 2020, 2022, 2022,
2022, 2022, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2010,
2010, 2010, 2010, 2010, 2010, 2010, 2015, 2015, 2015, 2015, 2015,
2015, 2015, 2015, 2020, 2020, 2020, 2020, 2020, 2020, 2020, 2020,
2022, 2022, 2022, 2022), Ser = c("migrant", "migrant_percent",
"migrant_male", "migrant_female", "refugee", "asylum", "other",
"concern", "migrant", "migrant_percent", "migrant_male", "migrant_female",
"refugee", "asylum", "other", "concern", "migrant", "migrant_percent",
"migrant_male", "migrant_female", "refugee", "asylum", "other",
"concern", "migrant", "migrant_percent", "migrant_male", "migrant_female",
"refugee", "asylum", "other", "concern", "refugee", "asylum",
"other", "concern", "migrant", "migrant_percent", "migrant_male",
"migrant_female", "refugee", "asylum", "other", "concern", "migrant",
"migrant_percent", "migrant_male", "migrant_female", "refugee",
"asylum", "concern", "migrant", "migrant_percent", "migrant_male",
"migrant_female", "refugee", "asylum", "other", "concern", "migrant",
"migrant_percent", "migrant_male", "migrant_female", "refugee",
"asylum", "other", "concern", "refugee", "asylum", "other", "concern",
"migrant", "migrant_percent", "migrant_male", "migrant_female",
"refugee", "asylum", "concern", "migrant", "migrant_percent",
"migrant_male", "migrant_female", "refugee", "asylum", "concern",
"migrant", "migrant_percent", "migrant_male", "migrant_female",
"refugee", "asylum", "concern", "migrant", "migrant_percent",
"migrant_male", "migrant_female", "refugee", "asylum", "concern",
"refugee", "asylum", "concern", "migrant", "migrant_percent",
"migrant", "migrant_percent", "migrant", "migrant_percent", "migrant",
"migrant_percent", "migrant", "migrant_percent", "migrant", "migrant_percent",
"migrant", "migrant_percent", "migrant", "migrant_percent", "migrant",
"migrant_percent", "migrant_male", "migrant_female", "refugee",
"asylum", "other", "concern", "migrant", "migrant_percent", "migrant_male",
"migrant_female", "refugee", "asylum", "concern", "migrant",
"migrant_percent", "migrant_male", "migrant_female", "refugee",
"asylum", "other", "concern", "migrant", "migrant_percent", "migrant_male",
"migrant_female", "refugee", "asylum", "other", "concern", "refugee",
"asylum", "other", "concern", "migrant", "migrant_percent", "migrant",
"migrant_percent", "migrant", "migrant_percent", "refugee", "concern",
"migrant", "migrant_percent", "other", "concern", "other", "concern",
"migrant", "migrant_percent", "migrant_male", "migrant_female",
"migrant", "migrant_percent", "migrant_male", "migrant_female",
"migrant", "migrant_percent", "migrant_male", "migrant_female",
"asylum", "concern", "migrant", "migrant_percent", "migrant_male",
"migrant_female", "refugee", "asylum", "concern", "other", "concern",
"migrant", "migrant_percent", "migrant_male", "migrant_female",
"refugee", "asylum", "other", "concern", "migrant", "migrant_percent",
"migrant_male", "migrant_female", "refugee", "asylum", "concern",
"migrant", "migrant_percent", "migrant_male", "migrant_female",
"refugee", "asylum", "concern", "migrant", "migrant_percent",
"migrant_male", "migrant_female", "refugee", "asylum", "other",
"concern", "refugee", "asylum", "other", "concern", "migrant",
"migrant_percent", "migrant_male", "migrant_female", "refugee",
"asylum", "concern", "migrant", "migrant_percent", "migrant_male",
"migrant_female", "refugee", "asylum", "other", "concern", "migrant",
"migrant_percent", "migrant_male", "migrant_female", "refugee",
"asylum", "other", "concern", "migrant", "migrant_percent", "migrant_male",
"migrant_female", "refugee", "asylum", "other", "concern", "refugee",
"asylum", "other", "concern", "migrant", "migrant_percent", "migrant_male",
"migrant_female", "migrant", "migrant_percent", "migrant_male",
"migrant_female", "asylum", "concern", "migrant", "migrant_percent",
"migrant_male", "migrant_female", "asylum", "concern", "refugee",
"asylum", "concern", "asylum", "other", "concern", "migrant",
"migrant_percent", "migrant_male", "migrant_female", "other",
"concern", "other", "concern", "migrant", "migrant_percent",
"migrant_male", "migrant_female", "refugee", "asylum", "other",
"concern", "migrant", "migrant_percent", "migrant_male", "migrant_female",
"refugee", "asylum", "other", "concern", "migrant", "migrant_percent",
"migrant_male", "migrant_female", "refugee", "asylum", "concern",
"migrant", "migrant_percent", "migrant_male", "migrant_female",
"refugee", "asylum", "concern", "refugee", "asylum", "other",
"concern", "migrant", "migrant_percent", "migrant_male", "migrant_female",
"refugee", "asylum", "other", "concern", "migrant", "migrant_percent",
"migrant_male", "migrant_female", "refugee", "asylum", "other",
"concern", "migrant", "migrant_percent", "migrant_male", "migrant_female",
"refugee", "asylum", "other", "concern", "migrant", "migrant_percent",
"migrant_male", "migrant_female", "refugee", "asylum", "other",
"concern", "refugee", "asylum", "other", "concern", "migrant",
"migrant_percent", "migrant_male", "migrant_female", "refugee",
"asylum", "other", "concern", "migrant", "migrant_percent", "migrant_male",
"migrant_female", "refugee", "asylum", "other", "concern", "migrant",
"migrant_percent", "migrant_male", "migrant_female", "refugee",
"asylum", "other", "concern", "migrant", "migrant_percent", "migrant_male",
"migrant_female", "refugee", "asylum", "other", "concern", "refugee",
"asylum", "other", "concern", "migrant", "migrant_percent", "migrant_male",
"migrant_female", "migrant", "migrant_percent", "migrant_male",
"migrant_female", "refugee", "asylum", "concern", "migrant",
"migrant_percent", "migrant_male", "migrant_female", "refugee",
"asylum", "other", "concern", "refugee", "asylum", "other", "concern",
"migrant", "migrant_percent", "migrant_male", "migrant_female",
"refugee", "asylum", "concern", "refugee", "asylum", "concern",
"refugee", "concern", "migrant", "migrant_percent", "migrant_male",
"migrant_female", "asylum", "concern", "migrant", "migrant_percent",
"migrant_male", "migrant_female", "refugee", "asylum", "concern",
"migrant", "migrant_percent", "migrant_male", "migrant_female",
"refugee", "asylum", "concern", "migrant", "migrant_percent",
"migrant_male", "migrant_female", "refugee", "asylum", "concern",
"refugee", "asylum", "concern", "migrant", "migrant_percent",
"migrant_male", "migrant_female", "refugee", "asylum", "other",
"concern", "migrant", "migrant_percent", "migrant_male", "migrant_female",
"refugee", "concern", "migrant", "migrant_percent", "migrant_male",
"migrant_female", "refugee", "asylum", "concern", "migrant",
"migrant_percent", "migrant_male", "migrant_female", "refugee",
"asylum", "concern", "refugee", "asylum", "other", "concern",
"migrant", "migrant_percent", "migrant_male", "migrant_female",
"migrant", "migrant_percent", "migrant_male", "migrant_female",
"migrant", "migrant_percent", "migrant_male", "migrant_female",
"refugee", "concern", "refugee", "asylum", "concern", "migrant",
"migrant_percent", "migrant_male", "migrant_female", "asylum",
"concern", "asylum", "concern", "migrant", "migrant_percent",
"migrant_male", "migrant_female", "refugee", "asylum", "other",
"concern", "migrant", "migrant_percent", "migrant_male", "migrant_female",
"refugee", "asylum", "other", "concern", "migrant", "migrant_percent",
"migrant_male", "migrant_female", "refugee", "asylum", "other",
"concern", "migrant", "migrant_percent", "migrant_male", "migrant_female",
"refugee", "asylum", "other", "concern", "refugee", "asylum",
"other", "concern", "migrant", "migrant_percent", "migrant_male",
"migrant_female", "refugee", "asylum", "other", "concern", "migrant",
"migrant_percent", "migrant_male", "migrant_female", "refugee",
"asylum", "other", "concern", "migrant", "migrant_percent", "migrant_male",
"migrant_female", "refugee", "asylum", "other", "concern", "migrant",
"migrant_percent", "migrant_male", "migrant_female", "refugee",
"asylum", "other", "concern", "refugee", "asylum", "other", "concern",
"migrant", "migrant_percent", "migrant_male", "migrant_female",
"refugee", "asylum", "concern", "migrant", "migrant_percent",
"migrant_male", "migrant_female", "refugee", "asylum", "other",
"concern", "migrant", "migrant_percent", "migrant_male", "migrant_female",
"asylum", "concern", "migrant", "migrant_percent", "migrant_male",
"migrant_female", "refugee", "asylum", "other", "concern", "refugee",
"asylum", "other", "concern", "migrant", "migrant_percent", "migrant_male",
"migrant_female", "refugee", "asylum", "other", "concern", "migrant",
"migrant_percent", "migrant_male", "migrant_female", "refugee",
"asylum", "other", "concern", "migrant", "migrant_percent", "migrant_male",
"migrant_female", "refugee", "asylum", "concern", "migrant",
"migrant_percent", "migrant_male", "migrant_female", "refugee",
"asylum", "concern", "refugee", "asylum", "concern", "migrant",
"migrant_percent", "migrant", "migrant_percent", "migrant", "migrant_percent",
"migrant", "migrant_percent", "migrant", "migrant_percent", "migrant_male",
"migrant_female", "migrant", "migrant_percent", "migrant_male",
"migrant_female", "migrant", "migrant_percent", "migrant_male",
"migrant_female", "migrant", "migrant_percent", "migrant_male",
"migrant_female", "migrant", "migrant_percent", "migrant_male",
"migrant_female", "refugee", "asylum", "other", "concern", "migrant",
"migrant_percent", "migrant_male", "migrant_female", "refugee",
"asylum", "other", "concern", "migrant", "migrant_percent", "migrant_male",
"migrant_female", "refugee", "asylum", "concern", "migrant",
"migrant_percent", "migrant_male", "migrant_female", "refugee",
"asylum", "other", "concern", "refugee", "asylum", "other", "concern",
"migrant", "migrant_percent", "migrant", "migrant_percent", "asylum",
"concern", "migrant", "migrant_percent", "migrant", "migrant_percent",
"migrant", "migrant_percent", "migrant_male", "migrant_female",
"refugee", "asylum", "other", "concern", "migrant", "migrant_percent",
"migrant_male", "migrant_female", "refugee", "asylum", "other",
"concern", "migrant", "migrant_percent", "migrant_male", "migrant_female",
"refugee", "asylum", "other", "concern", "migrant", "migrant_percent",
"migrant_male", "migrant_female", "refugee", "asylum", "other",
"concern", "refugee", "asylum", "other", "concern", "migrant",
"migrant_percent", "migrant_male", "migrant_female", "refugee",
"asylum", "other", "concern", "migrant", "migrant_percent", "migrant_male",
"migrant_female", "refugee", "asylum", "other", "concern", "migrant",
"migrant_percent", "migrant_male", "migrant_female", "refugee",
"asylum", "concern", "migrant", "migrant_percent", "migrant_male",
"migrant_female", "refugee", "asylum", "other", "concern", "refugee",
"asylum", "other", "concern", "migrant", "migrant_percent", "migrant_male",
"migrant_female", "refugee", "asylum", "other", "concern", "migrant",
"migrant_percent", "migrant_male", "migrant_female", "refugee",
"asylum", "other", "concern", "migrant", "migrant_percent", "migrant_male",
"migrant_female", "refugee", "asylum", "other", "concern", "migrant",
"migrant_percent", "migrant_male", "migrant_female", "refugee",
"asylum", "other", "concern", "refugee", "asylum", "other", "concern",
"migrant", "migrant_percent", "migrant", "migrant_percent", "refugee",
"concern", "migrant", "migrant_percent", "asylum", "concern",
"refugee", "concern", "migrant", "migrant_percent", "other",
"concern", "other", "concern", "migrant", "migrant_percent",
"migrant_male", "migrant_female", "migrant", "migrant_percent",
"migrant_male", "migrant_female", "other", "concern", "migrant",
"migrant_percent", "migrant_male", "migrant_female", "other",
"concern", "migrant", "migrant_percent", "migrant_male", "migrant_female",
"other", "concern", "other", "concern", "migrant", "migrant_percent",
"migrant_male", "migrant_female", "refugee", "asylum", "concern",
"migrant", "migrant_percent", "migrant_male", "migrant_female",
"refugee", "asylum", "concern", "migrant", "migrant_percent",
"migrant_male", "migrant_female", "refugee", "asylum", "other",
"concern", "migrant", "migrant_percent", "migrant_male", "migrant_female",
"refugee", "asylum", "other", "concern", "refugee", "asylum",
"other", "concern", "migrant", "migrant_percent", "migrant_male",
"migrant_female", "refugee", "asylum", "other", "concern", "migrant",
"migrant_percent", "migrant_male", "migrant_female", "refugee",
"asylum", "other", "concern", "migrant", "migrant_percent", "migrant_male",
"migrant_female", "refugee", "asylum", "concern", "migrant",
"migrant_percent", "migrant_male", "migrant_female", "refugee",
"asylum", "other", "concern", "refugee", "asylum", "other", "concern",
"migrant", "migrant_percent", "migrant_male", "migrant_female",
"refugee", "asylum", "other", "concern", "migrant", "migrant_percent",
"migrant_male", "migrant_female", "refugee", "asylum", "other",
"concern", "migrant", "migrant_percent", "migrant_male", "migrant_female",
"refugee", "asylum", "other", "concern", "migrant", "migrant_percent",
"migrant_male", "migrant_female", "refugee", "asylum", "other",
"concern", "refugee", "asylum", "other", "concern", "migrant",
"migrant_percent", "migrant_male", "migrant_female", "other",
"concern", "migrant", "migrant_percent", "migrant_male", "migrant_female",
"migrant", "migrant_percent", "migrant_male", "migrant_female",
"other", "concern", "migrant", "migrant_percent", "migrant_male",
"migrant_female", "other", "concern", "other", "concern", "migrant",
"migrant_percent", "migrant_male", "migrant_female", "refugee",
"asylum", "other", "concern", "migrant", "migrant_percent", "migrant_male",
"migrant_female", "refugee", "asylum", "concern", "migrant",
"migrant_percent", "migrant_male", "migrant_female", "refugee",
"asylum", "other", "concern", "migrant", "migrant_percent", "migrant_male",
"migrant_female", "asylum", "other", "concern", "refugee", "asylum",
"other", "concern", "migrant", "migrant_percent", "migrant_male",
"migrant_female", "refugee", "asylum", "other", "concern", "migrant",
"migrant_percent", "migrant_male", "migrant_female", "refugee",
"asylum", "other", "concern", "migrant", "migrant_percent", "migrant_male",
"migrant_female", "refugee", "asylum", "other", "concern", "migrant",
"migrant_percent", "migrant_male", "migrant_female", "refugee",
"asylum", "other", "concern", "refugee", "asylum", "other", "concern",
"migrant", "migrant_percent", "migrant_male", "migrant_female",
"refugee", "asylum", "other", "concern", "migrant", "migrant_percent",
"migrant_male", "migrant_female", "refugee", "asylum", "other",
"concern", "migrant", "migrant_percent", "migrant_male", "migrant_female",
"refugee", "asylum", "concern", "migrant", "migrant_percent",
"migrant_male", "migrant_female", "refugee", "asylum", "other",
"concern", "refugee", "asylum", "other", "concern", "migrant",
"migrant_percent", "migrant", "migrant_percent", "refugee", "asylum",
"concern", "migrant", "migrant_percent", "refugee", "asylum",
"other", "concern", "migrant", "migrant_percent", "refugee",
"asylum", "other", "concern", "refugee", "asylum", "other", "concern",
"migrant", "migrant_percent", "migrant_male", "migrant_female",
"refugee", "asylum", "other", "concern", "migrant", "migrant_percent",
"migrant_male", "migrant_female", "refugee", "asylum", "other",
"concern", "migrant", "migrant_percent", "migrant_male", "migrant_female",
"refugee", "asylum", "other", "concern", "migrant", "migrant_percent",
"migrant_male", "migrant_female", "refugee", "asylum", "other",
"concern", "refugee", "asylum", "other", "concern", "migrant",
"migrant_percent", "migrant_male", "migrant_female", "refugee",
"asylum", "concern", "migrant", "migrant_percent", "migrant_male",
"migrant_female", "refugee", "asylum", "other", "concern", "migrant",
"migrant_percent", "migrant_male", "migrant_female", "refugee",
"asylum", "other", "concern", "migrant", "migrant_percent", "migrant_male",
"migrant_female", "refugee", "asylum", "other", "concern", "refugee",
"asylum", "other", "concern", "migrant", "migrant_percent", "migrant_male",
"migrant_female", "refugee", "asylum", "concern", "migrant",
"migrant_percent", "migrant_male", "migrant_female", "refugee",
"asylum", "concern", "migrant", "migrant_percent", "migrant_male",
"migrant_female", "refugee", "asylum", "concern", "migrant",
"migrant_percent", "migrant_male", "migrant_female", "refugee",
"asylum", "other", "concern", "refugee", "asylum", "other", "concern",
"migrant", "migrant_percent", "migrant_male", "migrant_female",
"refugee", "asylum", "other", "concern", "migrant", "migrant_percent",
"migrant_male", "migrant_female", "refugee", "asylum", "concern",
"migrant", "migrant_percent", "migrant_male", "migrant_female",
"refugee", "asylum", "concern", "migrant", "migrant_percent",
"migrant_male", "migrant_female", "refugee", "asylum", "concern",
"refugee", "asylum", "concern", "migrant", "migrant_percent",
"migrant_male", "migrant_female", "refugee", "asylum", "concern",
"migrant", "migrant_percent", "migrant_male", "migrant_female",
"refugee", "asylum", "other", "concern", "migrant", "migrant_percent",
"migrant_male", "migrant_female", "refugee", "asylum", "other",
"concern", "refugee", "asylum", "other", "concern", "refugee",
"other", "concern", "migrant", "migrant_percent", "migrant_male",
"migrant_female", "refugee", "concern", "refugee", "concern",
"migrant", "migrant_percent", "migrant_male", "migrant_female",
"migrant", "migrant_percent", "migrant_male", "migrant_female",
"asylum", "other", "concern", "migrant", "migrant_percent", "migrant_male",
"migrant_female", "asylum", "concern", "migrant", "migrant_percent",
"migrant_male", "migrant_female", "asylum", "concern", "migrant",
"migrant_percent", "migrant_male", "migrant_female", "refugee",
"asylum", "other", "concern", "migrant", "migrant_percent", "migrant_male",
"migrant_female", "refugee", "asylum", "other", "concern", "migrant",
"migrant_percent", "migrant_male", "migrant_female", "refugee",
"asylum", "other", "concern", "migrant", "migrant_percent", "migrant_male",
"migrant_female", "refugee", "asylum", "other", "concern", "refugee",
"asylum", "other", "concern", "migrant", "migrant_percent", "migrant_male",
"migrant_female", "refugee", "concern", "migrant", "migrant_percent",
"migrant_male", "migrant_female", "migrant", "migrant_percent",
"migrant_male", "migrant_female", "migrant", "migrant_percent",
"migrant_male", "migrant_female", "refugee", "concern", "migrant",
"migrant_percent", "migrant_male", "migrant_female", "refugee",
"asylum", "other", "concern", "migrant", "migrant_percent", "migrant_male",
"migrant_female", "refugee", "asylum", "other", "concern", "migrant",
"migrant_percent", "migrant_male", "migrant_female", "refugee",
"asylum", "other", "concern", "migrant", "migrant_percent", "migrant_male",
"migrant_female", "refugee", "asylum", "other", "concern", "refugee",
"asylum", "other", "concern", "migrant", "migrant_percent", "migrant",
"migrant_percent", "migrant", "migrant_percent", "migrant", "migrant_percent",
"migrant", "migrant_percent", "migrant_male", "migrant_female",
"refugee", "asylum", "concern", "migrant", "migrant_percent",
"migrant_male", "migrant_female", "refugee", "asylum", "other",
"concern", "migrant", "migrant_percent", "migrant_male", "migrant_female",
"refugee", "asylum", "other", "concern", "migrant", "migrant_percent",
"migrant_male", "migrant_female", "refugee", "asylum", "other",
"concern", "refugee", "asylum", "other", "concern", "migrant",
"migrant_percent", "migrant_male", "migrant_female", "refugee",
"asylum", "other", "concern", "migrant", "migrant_percent", "migrant_male",
"migrant_female", "refugee", "asylum", "other", "concern", "migrant",
"migrant_percent", "migrant_male", "migrant_female", "refugee",
"asylum", "other", "concern", "migrant", "migrant_percent", "migrant_male",
"migrant_female", "refugee", "asylum", "other", "concern", "refugee",
"asylum", "other", "concern", "migrant", "migrant_percent", "migrant_male",
"migrant_female", "refugee", "asylum", "other", "concern", "migrant",
"migrant_percent", "migrant_male", "migrant_female", "refugee",
"asylum", "other", "concern", "migrant", "migrant_percent", "migrant_male",
"migrant_female", "refugee", "asylum", "other", "concern", "migrant",
"migrant_percent", "migrant_male", "migrant_female", "refugee",
"asylum", "other", "concern", "refugee", "asylum", "other", "concern",
"migrant", "migrant_percent", "migrant_male", "migrant_female",
"refugee", "asylum", "concern", "migrant", "migrant_percent",
"migrant_male", "migrant_female", "refugee", "asylum", "other",
"concern", "migrant", "migrant_percent", "migrant_male", "migrant_female",
"refugee", "asylum", "concern", "migrant", "migrant_percent",
"migrant_male", "migrant_female", "refugee", "asylum", "concern",
"refugee", "asylum", "other", "concern", "migrant", "migrant_percent",
"migrant_male", "migrant_female", "refugee", "asylum", "concern",
"migrant", "migrant_percent", "migrant_male", "migrant_female",
"refugee", "asylum", "concern", "migrant", "migrant_percent",
"migrant_male", "migrant_female", "refugee", "asylum", "other",
"concern", "refugee", "asylum", "other", "concern", "other",
"concern", "migrant", "migrant_percent", "migrant_male", "migrant_female",
"refugee", "asylum", "other", "concern", "migrant", "migrant_percent",
"migrant_male", "migrant_female", "refugee", "asylum", "concern",
"migrant", "migrant_percent", "migrant_male", "migrant_female",
"refugee", "asylum", "other", "concern", "migrant", "migrant_percent",
"migrant_male", "migrant_female", "refugee", "asylum", "other",
"concern", "refugee", "asylum", "other", "concern", "migrant",
"migrant_percent", "migrant_male", "migrant_female", "refugee",
"asylum", "concern", "migrant", "migrant_percent", "migrant_male",
"migrant_female", "refugee", "asylum", "other", "concern", "migrant",
"migrant_percent", "migrant_male", "migrant_female", "refugee",
"asylum", "other", "concern", "migrant", "migrant_percent", "migrant_male",
"migrant_female", "refugee", "asylum", "other", "concern", "refugee",
"asylum", "other", "concern", "migrant", "migrant_percent", "migrant_male",
"migrant_female", "migrant", "migrant_percent", "migrant_male",
"migrant_female", "migrant", "migrant_percent", "migrant_male",
"migrant_female", "migrant", "migrant_percent", "migrant_male",
"migrant_female", "migrant", "migrant_percent", "migrant_male",
"migrant_female", "refugee", "asylum", "other", "concern", "migrant",
"migrant_percent", "migrant_male", "migrant_female", "refugee",
"asylum", "other", "concern", "migrant", "migrant_percent", "migrant_male",
"migrant_female", "refugee", "asylum", "other", "concern", "migrant",
"migrant_percent", "migrant_male", "migrant_female", "refugee",
"asylum", "other", "concern", "refugee", "asylum", "other", "concern",
"migrant", "migrant_percent", "migrant_male", "migrant_female",
"refugee", "asylum", "other", "concern", "migrant", "migrant_percent",
"migrant_male", "migrant_female", "refugee", "asylum", "other",
"concern", "migrant", "migrant_percent", "migrant_male", "migrant_female",
"refugee", "asylum", "other", "concern", "migrant", "migrant_percent",
"migrant_male", "migrant_female", "refugee", "asylum", "other",
"concern", "refugee", "asylum", "other", "concern", "migrant",
"migrant_percent", "migrant_male", "migrant_female", "refugee",
"asylum", "other", "concern", "migrant", "migrant_percent", "migrant_male",
"migrant_female", "refugee", "asylum", "other", "concern", "migrant",
"migrant_percent", "migrant_male", "migrant_female", "refugee",
"asylum", "concern", "migrant", "migrant_percent", "migrant_male",
"migrant_female", "refugee", "asylum", "concern", "refugee",
"asylum", "other", "concern", "refugee", "asylum", "concern",
"migrant", "migrant_percent", "migrant", "migrant_percent", "migrant",
"migrant_percent", "migrant", "migrant_percent", "asylum", "other",
"concern", "migrant", "migrant_percent", "migrant_male", "migrant_female",
"migrant", "migrant_percent", "migrant_male", "migrant_female",
"refugee", "asylum", "concern", "migrant", "migrant_percent",
"migrant_male", "migrant_female", "refugee", "asylum", "other",
"concern", "migrant", "migrant_percent", "migrant_male", "migrant_female",
"refugee", "asylum", "other", "concern", "refugee", "asylum",
"other", "concern", "migrant", "migrant_percent", "migrant_male",
"migrant_female", "refugee", "asylum", "other", "concern", "migrant",
"migrant_percent", "migrant_male", "migrant_female", "refugee",
"asylum", "concern", "migrant", "migrant_percent", "migrant_male",
"migrant_female", "refugee", "asylum", "concern", "migrant",
"migrant_percent", "migrant_male", "migrant_female", "refugee",
"asylum", "other", "concern", "refugee", "asylum", "other", "concern",
"migrant", "migrant_percent", "migrant_male", "migrant_female",
"refugee", "asylum", "other", "concern", "migrant", "migrant_percent",
"migrant_male", "migrant_female", "refugee", "asylum", "other",
"concern", "migrant", "migrant_percent", "migrant_male", "migrant_female",
"refugee", "asylum", "other", "concern", "migrant", "migrant_percent",
"migrant_male", "migrant_female", "refugee", "asylum", "concern",
"refugee", "asylum", "other", "concern", "migrant", "migrant_percent",
"migrant_male", "migrant_female", "refugee", "asylum", "other",
"concern", "migrant", "migrant_percent", "migrant_male", "migrant_female",
"refugee", "asylum", "concern", "migrant", "migrant_percent",
"migrant_male", "migrant_female", "refugee", "concern", "migrant",
"migrant_percent", "migrant_male", "migrant_female", "refugee",
"asylum", "other", "concern", "refugee", "asylum", "other", "concern",
"migrant", "migrant_percent", "migrant_male", "migrant_female",
"migrant", "migrant_percent", "migrant_male", "migrant_female",
"migrant", "migrant_percent", "migrant_male", "migrant_female",
"migrant", "migrant_percent", "migrant_male", "migrant_female",
"migrant", "migrant_percent", "migrant_male", "migrant_female",
"refugee", "asylum", "other", "concern", "migrant", "migrant_percent",
"migrant_male", "migrant_female", "refugee", "asylum", "other",
"concern", "migrant", "migrant_percent", "migrant_male", "migrant_female",
"refugee", "asylum", "other", "concern", "refugee", "asylum",
"other", "concern", "migrant", "migrant_percent", "migrant_male",
"migrant_female", "refugee", "other", "concern", "refugee", "other",
"concern", "migrant", "migrant_percent", "migrant_male", "migrant_female",
"refugee", "asylum", "other", "concern", "migrant", "migrant_percent",
"migrant_male", "migrant_female", "refugee", "asylum", "other",
"concern", "migrant", "migrant_percent", "migrant_male", "migrant_female",
"refugee", "asylum", "other", "concern", "migrant", "migrant_percent",
"migrant_male", "migrant_female", "refugee", "asylum", "other",
"concern", "refugee", "asylum", "other", "concern", "migrant",
"migrant_percent", "migrant_male", "migrant_female", "refugee",
"asylum", "concern", "migrant", "migrant_percent", "migrant_male",
"migrant_female", "refugee", "concern", "migrant", "migrant_percent",
"migrant_male", "migrant_female", "refugee", "asylum", "other",
"concern", "migrant", "migrant_percent", "migrant_male", "migrant_female",
"refugee", "asylum", "concern", "refugee", "asylum", "other",
"concern", "migrant", "migrant_percent", "migrant_male", "migrant_female",
"refugee", "asylum", "other", "concern", "migrant", "migrant_percent",
"migrant_male", "migrant_female", "refugee", "asylum", "other",
"concern", "migrant", "migrant_percent", "migrant_male", "migrant_female",
"refugee", "asylum", "other", "concern", "migrant", "migrant_percent",
"migrant_male", "migrant_female", "refugee", "asylum", "other",
"concern", "refugee", "asylum", "other", "concern", "migrant",
"migrant_percent", "migrant", "migrant_percent", "migrant", "migrant_percent",
"migrant", "migrant_percent", "migrant", "migrant_percent", "migrant",
"migrant_percent", "migrant", "migrant_percent", "migrant", "migrant_percent",
"migrant", "migrant_percent", "migrant_male", "migrant_female",
"migrant", "migrant_percent", "migrant_male", "migrant_female",
"refugee", "asylum", "concern", "migrant", "migrant_percent",
"migrant_male", "migrant_female", "refugee", "asylum", "concern",
"migrant", "migrant_percent", "migrant_male", "migrant_female",
"refugee", "asylum", "concern", "refugee", "asylum", "concern",
"refugee", "concern", "migrant", "migrant_percent", "migrant_male",
"migrant_female", "refugee", "other", "concern", "migrant", "migrant_percent",
"migrant_male", "migrant_female", "refugee", "asylum", "other",
"concern", "migrant", "migrant_percent", "migrant_male", "migrant_female",
"refugee", "asylum", "other", "concern", "migrant", "migrant_percent",
"migrant_male", "migrant_female", "refugee", "asylum", "other",
"concern", "refugee", "asylum", "other", "concern", "migrant",
"migrant_percent", "migrant_male", "migrant_female", "refugee",
"asylum", "other", "concern", "migrant", "migrant_percent", "migrant_male",
"migrant_female", "refugee", "asylum", "other", "concern", "migrant",
"migrant_percent", "migrant_male", "migrant_female", "refugee",
"asylum", "other", "concern", "migrant", "migrant_percent", "migrant_male",
"migrant_female", "refugee", "asylum", "other", "concern", "refugee",
"asylum", "other", "concern", "migrant", "migrant_percent", "migrant_male",
"migrant_female", "migrant", "migrant_percent", "migrant_male",
"migrant_female", "migrant", "migrant_percent", "migrant_male",
"migrant_female", "migrant", "migrant_percent", "migrant_male",
"migrant_female", "migrant", "migrant_percent", "migrant_male",
"migrant_female", "migrant", "migrant_percent", "migrant_male",
"migrant_female", "migrant", "migrant_percent", "migrant_male",
"migrant_female", "migrant", "migrant_percent", "migrant_male",
"migrant_female", "migrant", "migrant_percent", "migrant_male",
"migrant_female", "refugee", "asylum", "other", "concern", "migrant",
"migrant_percent", "migrant_male", "migrant_female", "refugee",
"asylum", "other", "concern", "migrant", "migrant_percent", "migrant_male",
"migrant_female", "refugee", "asylum", "concern", "refugee",
"asylum", "other", "concern", "migrant", "migrant_percent", "migrant_male",
"migrant_female", "refugee", "asylum", "concern", "refugee",
"asylum", "concern", "migrant", "migrant_percent", "migrant_male",
"migrant_female", "refugee", "asylum", "other", "concern", "migrant",
"migrant_percent", "migrant_male", "migrant_female", "refugee",
"asylum", "other", "concern", "migrant", "migrant_percent", "migrant_male",
"migrant_female", "refugee", "asylum", "concern", "refugee",
"asylum", "other", "concern", "migrant", "migrant_percent", "migrant_male",
"migrant_female", "refugee", "asylum", "concern", "refugee",
"asylum", "concern", "migrant", "migrant_percent", "migrant_male",
"migrant_female", "refugee", "asylum", "other", "concern", "migrant",
"migrant_percent", "migrant_male", "migrant_female", "refugee",
"asylum", "other", "concern", "migrant", "migrant_percent", "migrant_male",
"migrant_female", "refugee", "asylum", "other", "concern", "migrant",
"migrant_percent", "migrant_male", "migrant_female", "refugee",
"asylum", "other", "concern", "refugee", "asylum", "other", "concern",
"migrant", "migrant_percent", "migrant_male", "migrant_female",
"refugee", "asylum", "other", "concern", "migrant", "migrant_percent",
"migrant_male", "migrant_female", "refugee", "asylum", "other",
"concern", "migrant", "migrant_percent", "migrant_male", "migrant_female",
"refugee", "asylum", "other", "concern", "migrant", "migrant_percent",
"migrant_male", "migrant_female", "refugee", "asylum", "other",
"concern", "refugee", "asylum", "other", "concern", "migrant",
"migrant_percent", "migrant_male", "migrant_female", "refugee",
"asylum", "other", "concern", "migrant", "migrant_percent", "migrant_male",
"migrant_female", "refugee", "asylum", "other", "concern", "migrant",
"migrant_percent", "migrant_male", "migrant_female", "refugee",
"asylum", "concern", "refugee", "asylum", "other", "concern",
"migrant", "migrant_percent", "migrant_male", "migrant_female",
"refugee", "asylum", "concern", "refugee", "asylum", "concern",
"migrant", "migrant_percent", "migrant", "migrant_percent", "migrant",
"migrant_percent", "migrant", "migrant_percent", "migrant", "migrant_percent",
"migrant_male", "migrant_female", "refugee", "asylum", "other",
"concern", "migrant", "migrant_percent", "migrant_male", "migrant_female",
"refugee", "asylum", "other", "concern", "migrant", "migrant_percent",
"migrant_male", "migrant_female", "refugee", "asylum", "other",
"concern", "migrant", "migrant_percent", "migrant_male", "migrant_female",
"refugee", "asylum", "other", "concern", "refugee", "asylum",
"other", "concern", "migrant", "migrant_percent", "migrant",
"migrant_percent", "migrant", "migrant_percent", "migrant", "migrant_percent",
"migrant", "migrant_percent", "migrant_male", "migrant_female",
"migrant", "migrant_percent", "migrant_male", "migrant_female",
"asylum", "concern", "migrant", "migrant_percent", "migrant_male",
"migrant_female", "refugee", "asylum", "concern", "migrant",
"migrant_percent", "migrant_male", "migrant_female", "refugee",
"concern", "other", "concern", "migrant", "migrant_percent",
"migrant_male", "migrant_female", "migrant", "migrant_percent",
"migrant_male", "migrant_female", "migrant", "migrant_percent",
"migrant_male", "migrant_female", "migrant", "migrant_percent",
"migrant_male", "migrant_female", "migrant", "migrant_percent",
"migrant_male", "migrant_female", "migrant", "migrant_percent",
"migrant_male", "migrant_female", "migrant", "migrant_percent",
"migrant_male", "migrant_female", "migrant", "migrant_percent",
"migrant_male", "migrant_female", "migrant", "migrant_percent",
"migrant_male", "migrant_female", "refugee", "asylum", "concern",
"migrant", "migrant_percent", "migrant_male", "migrant_female",
"refugee", "asylum", "concern", "migrant", "migrant_percent",
"migrant_male", "migrant_female", "refugee", "asylum", "concern",
"migrant", "migrant_percent", "migrant_male", "migrant_female",
"refugee", "asylum", "other", "concern", "refugee", "asylum",
"other", "concern", "migrant", "migrant_percent", "migrant_male",
"migrant_female", "refugee", "asylum", "other", "concern", "migrant",
"migrant_percent", "migrant_male", "migrant_female", "refugee",
"asylum", "other", "concern", "migrant", "migrant_percent", "migrant_male",
"migrant_female", "refugee", "asylum", "concern", "refugee",
"asylum", "other", "concern", "migrant", "migrant_percent", "migrant_male",
"migrant_female", "refugee", "asylum", "concern", "refugee",
"asylum", "concern", "migrant", "migrant_percent", "migrant_male",
"migrant_female", "refugee", "asylum", "concern", "migrant",
"migrant_percent", "migrant_male", "migrant_female", "refugee",
"asylum", "other", "concern", "migrant", "migrant_percent", "migrant_male",
"migrant_female", "refugee", "asylum", "concern", "migrant",
"migrant_percent", "migrant_male", "migrant_female", "refugee",
"asylum", "concern", "refugee", "asylum", "concern", "migrant",
"migrant_percent", "migrant_male", "migrant_female", "migrant",
"migrant_percent", "migrant_male", "migrant_female", "refugee",
"concern", "migrant", "migrant_percent", "migrant_male", "migrant_female",
"refugee", "asylum", "concern", "migrant", "migrant_percent",
"migrant_male", "migrant_female", "refugee", "asylum", "other",
"concern", "refugee", "asylum", "other", "concern", "migrant",
"migrant_percent", "migrant_male", "migrant_female", "migrant",
"migrant_percent", "migrant_male", "migrant_female", "asylum",
"concern", "migrant", "migrant_percent", "migrant_male", "migrant_female",
"refugee", "asylum", "concern", "refugee", "asylum", "other",
"concern", "migrant", "migrant_percent", "migrant_male", "migrant_female",
"refugee", "asylum", "concern", "asylum", "concern", "migrant",
"migrant_percent", "migrant", "migrant_percent", "migrant", "migrant_percent",
"migrant", "migrant_percent", "migrant", "migrant_percent", "migrant_male",
"migrant_female", "refugee", "asylum", "concern", "migrant",
"migrant_percent", "migrant_male", "migrant_female", "refugee",
"other", "concern", "migrant", "migrant_percent", "migrant_male",
"migrant_female", "refugee", "asylum", "concern", "migrant",
"migrant_percent", "migrant_male", "migrant_female", "refugee",
"asylum", "other", "concern", "refugee", "asylum", "other", "concern",
"migrant", "migrant_percent", "migrant_male", "migrant_female",
"refugee", "asylum", "other", "concern", "migrant", "migrant_percent",
"migrant_male", "migrant_female", "refugee", "asylum", "other",
"concern", "migrant", "migrant_percent", "migrant_male", "migrant_female",
"refugee", "asylum", "other", "concern", "migrant", "migrant_percent",
"migrant_male", "migrant_female", "refugee", "asylum", "other",
"concern", "refugee", "asylum", "other", "concern", "migrant",
"migrant_percent", "migrant_male", "migrant_female", "refugee",
"asylum", "other", "concern", "migrant", "migrant_percent", "migrant_male",
"migrant_female", "refugee", "asylum", "other", "concern", "migrant",
"migrant_percent", "migrant_male", "migrant_female", "refugee",
"asylum", "other", "concern", "migrant", "migrant_percent", "migrant_male",
"migrant_female", "refugee", "asylum", "other", "concern", "refugee",
"asylum", "other", "concern", "migrant", "migrant_percent", "migrant_male",
"migrant_female", "refugee", "asylum", "other", "concern", "migrant",
"migrant_percent", "migrant_male", "migrant_female", "refugee",
"asylum", "other", "concern", "migrant", "migrant_percent", "migrant_male",
"migrant_female", "refugee", "asylum", "concern", "migrant",
"migrant_percent", "migrant_male", "migrant_female", "refugee",
"asylum", "concern", "refugee", "asylum", "other", "concern",
"migrant", "migrant_percent", "migrant_male", "migrant_female",
"refugee", "asylum", "other", "concern", "migrant", "migrant_percent",
"migrant_male", "migrant_female", "refugee", "asylum", "other",
"concern", "migrant", "migrant_percent", "migrant_male", "migrant_female",
"refugee", "asylum", "concern", "migrant", "migrant_percent",
"migrant_male", "migrant_female", "refugee", "asylum", "concern",
"refugee", "asylum", "other", "concern", "migrant", "migrant_percent",
"migrant_male", "migrant_female", "refugee", "asylum", "other",
"concern", "migrant", "migrant_percent", "migrant_male", "migrant_female",
"refugee", "asylum", "other", "concern", "migrant", "migrant_percent",
"migrant_male", "migrant_female", "refugee", "asylum", "other",
"concern", "migrant", "migrant_percent", "migrant_male", "migrant_female",
"refugee", "asylum", "other", "concern", "refugee", "asylum",
"other", "concern", "migrant", "migrant_percent", "migrant_male",
"migrant_female", "refugee", "asylum", "other", "concern", "migrant",
"migrant_percent", "migrant_male", "migrant_female", "refugee",
"asylum", "other", "concern", "migrant", "migrant_percent", "migrant_male",
"migrant_female", "refugee", "asylum", "other", "concern", "migrant",
"migrant_percent", "migrant_male", "migrant_female", "refugee",
"asylum", "other", "concern", "refugee", "asylum", "other", "concern",
"migrant", "migrant_percent", "migrant_male", "migrant_female",
"refugee", "asylum", "other", "concern", "migrant", "migrant_percent",
"migrant_male", "migrant_female", "refugee", "asylum", "other",
"concern", "migrant", "migrant_percent", "migrant_male", "migrant_female",
"refugee", "asylum", "other", "concern", "migrant", "migrant_percent",
"migrant_male", "migrant_female", "refugee", "asylum", "other",
"concern", "refugee", "asylum", "other", "concern", "migrant",
"migrant_percent", "migrant", "migrant_percent", "migrant", "migrant_percent",
"migrant", "migrant_percent", "migrant", "migrant_percent", "migrant_male",
"migrant_female", "refugee", "asylum", "concern", "migrant",
"migrant_percent", "migrant_male", "migrant_female", "refugee",
"asylum", "other", "concern", "migrant", "migrant_percent", "migrant_male",
"migrant_female", "refugee", "asylum", "other", "concern", "migrant",
"migrant_percent", "migrant_male", "migrant_female", "refugee",
"asylum", "other", "concern", "refugee", "asylum", "other", "concern",
"migrant", "migrant_percent", "migrant_male", "migrant_female",
"refugee", "other", "concern", "migrant", "migrant_percent",
"migrant_male", "migrant_female", "refugee", "asylum", "other",
"concern", "migrant", "migrant_percent", "migrant_male", "migrant_female",
"refugee", "asylum", "other", "concern", "migrant", "migrant_percent",
"migrant_male", "migrant_female", "refugee", "asylum", "other",
"concern", "refugee", "asylum", "other", "concern", "migrant",
"migrant_percent", "migrant_male", "migrant_female", "migrant",
"migrant_percent", "migrant_male", "migrant_female", "refugee",
"concern", "migrant", "migrant_percent", "migrant_male", "migrant_female",
"refugee", "asylum", "concern", "migrant", "migrant_percent",
"migrant_male", "migrant_female", "refugee", "asylum", "other",
"concern", "refugee", "asylum", "other", "concern", "migrant",
"migrant_percent", "migrant_male", "migrant_female", "refugee",
"asylum", "other", "concern", "migrant", "migrant_percent", "migrant_male",
"migrant_female", "refugee", "asylum", "other", "concern", "migrant",
"migrant_percent", "migrant_male", "migrant_female", "refugee",
"asylum", "other", "concern", "migrant", "migrant_percent", "migrant_male",
"migrant_female", "refugee", "asylum", "other", "concern", "refugee",
"asylum", "other", "concern", "migrant", "migrant_percent", "migrant_male",
"migrant_female", "refugee", "asylum", "other", "concern", "migrant",
"migrant_percent", "migrant_male", "migrant_female", "refugee",
"asylum", "other", "concern", "migrant", "migrant_percent", "migrant_male",
"migrant_female", "refugee", "asylum", "concern", "migrant",
"migrant_percent", "migrant_male", "migrant_female", "refugee",
"asylum", "other", "concern", "refugee", "asylum", "other", "concern",
"migrant", "migrant_percent", "migrant_male", "migrant_female",
"refugee", "asylum", "other", "concern", "migrant", "migrant_percent",
"migrant_male", "migrant_female", "refugee", "asylum", "other",
"concern", "migrant", "migrant_percent", "migrant_male", "migrant_female",
"refugee", "asylum", "other", "concern", "migrant", "migrant_percent",
"migrant_male", "migrant_female", "refugee", "asylum", "other",
"concern", "refugee", "asylum", "other", "concern", "migrant",
"migrant_percent", "migrant_male", "migrant_female", "refugee",
"asylum", "other", "concern", "migrant", "migrant_percent", "migrant_male",
"migrant_female", "refugee", "asylum", "other", "concern", "migrant",
"migrant_percent", "migrant_male", "migrant_female", "refugee",
"asylum", "other", "concern", "migrant", "migrant_percent", "migrant_male",
"migrant_female", "refugee", "asylum", "other", "concern", "refugee",
"asylum", "other", "concern", "migrant", "migrant_percent", "migrant_male",
"migrant_female", "migrant", "migrant_percent", "migrant_male",
"migrant_female", "migrant", "migrant_percent", "migrant_male",
"migrant_female", "migrant", "migrant_percent", "migrant_male",
"migrant_female", "migrant", "migrant_percent", "migrant_male",
"migrant_female", "refugee", "asylum", "other", "concern", "migrant",
"migrant_percent", "migrant_male", "migrant_female", "refugee",
"asylum", "other", "concern", "migrant", "migrant_percent", "migrant_male",
"migrant_female", "refugee", "asylum", "other", "concern", "migrant",
"migrant_percent", "migrant_male", "migrant_female", "refugee",
"asylum", "other", "concern", "refugee", "asylum", "other", "concern",
"migrant", "migrant_percent", "migrant_male", "migrant_female",
"refugee", "asylum", "other", "concern", "migrant", "migrant_percent",
"migrant_male", "migrant_female", "refugee", "asylum", "other",
"concern", "migrant", "migrant_percent", "migrant_male", "migrant_female",
"refugee", "asylum", "other", "concern", "migrant", "migrant_percent",
"migrant_male", "migrant_female", "refugee", "asylum", "other",
"concern", "refugee", "asylum", "other", "concern", "migrant",
"migrant_percent", "migrant_male", "migrant_female", "migrant",
"migrant_percent", "migrant_male", "migrant_female", "migrant",
"migrant_percent", "migrant_male", "migrant_female", "migrant",
"migrant_percent", "migrant_male", "migrant_female", "refugee",
"asylum", "concern", "migrant", "migrant_percent", "migrant_male",
"migrant_female", "refugee", "asylum", "other", "concern", "migrant",
"migrant_percent", "migrant_male", "migrant_female", "refugee",
"asylum", "other", "concern", "migrant", "migrant_percent", "migrant_male",
"migrant_female", "refugee", "asylum", "other", "concern", "migrant",
"migrant_percent", "migrant_male", "migrant_female", "refugee",
"asylum", "other", "concern", "refugee", "asylum", "other", "concern",
"migrant", "migrant_percent", "migrant_male", "migrant_female",
"refugee", "asylum", "other", "concern", "migrant", "migrant_percent",
"migrant_male", "migrant_female", "refugee", "asylum", "other",
"concern", "migrant", "migrant_percent", "migrant_male", "migrant_female",
"refugee", "asylum", "other", "concern", "migrant", "migrant_percent",
"migrant_male", "migrant_female", "refugee", "asylum", "other",
"concern", "refugee", "asylum", "other", "concern", "migrant",
"migrant_percent", "migrant_male", "migrant_female", "migrant",
"migrant_percent", "migrant_male", "migrant_female", "migrant",
"migrant_percent", "migrant_male", "migrant_female", "refugee",
"asylum", "concern", "migrant", "migrant_percent", "migrant_male",
"migrant_female", "refugee", "asylum", "concern", "refugee",
"asylum", "other", "concern", "migrant", "migrant_percent", "migrant_male",
"migrant_female", "refugee", "asylum", "other", "concern", "migrant",
"migrant_percent", "migrant_male", "migrant_female", "refugee",
"asylum", "other", "concern", "migrant", "migrant_percent", "migrant_male",
"migrant_female", "refugee", "asylum", "other", "concern", "migrant",
"migrant_percent", "migrant_male", "migrant_female", "refugee",
"asylum", "other", "concern", "refugee", "asylum", "concern",
"migrant", "migrant_percent", "migrant_male", "migrant_female",
"refugee", "asylum", "other", "concern", "migrant", "migrant_percent",
"migrant_male", "migrant_female", "refugee", "asylum", "other",
"concern", "migrant", "migrant_percent", "migrant_male", "migrant_female",
"refugee", "asylum", "other", "concern", "migrant", "migrant_percent",
"migrant_male", "migrant_female", "refugee", "asylum", "other",
"concern", "refugee", "asylum", "other", "concern", "migrant",
"migrant_percent", "refugee", "asylum", "concern", "migrant",
"migrant_percent", "refugee", "asylum", "other", "concern", "migrant",
"migrant_percent", "refugee", "asylum", "other", "concern", "migrant",
"migrant_percent", "refugee", "asylum", "concern", "refugee",
"asylum", "concern", "migrant", "migrant_percent", "migrant_male",
"migrant_female", "refugee", "asylum", "other", "concern", "migrant",
"migrant_percent", "migrant_male", "migrant_female", "refugee",
"asylum", "other", "concern", "migrant", "migrant_percent", "migrant_male",
"migrant_female", "refugee", "asylum", "other", "concern", "migrant",
"migrant_percent", "migrant_male", "migrant_female", "refugee",
"asylum", "other", "concern", "refugee", "asylum", "other", "concern",
"migrant", "migrant_percent", "migrant_male", "migrant_female",
"refugee", "other", "concern", "migrant", "migrant_percent",
"migrant_male", "migrant_female", "refugee", "asylum", "other",
"concern", "migrant", "migrant_percent", "migrant_male", "migrant_female",
"refugee", "asylum", "other", "concern", "migrant", "migrant_percent",
"migrant_male", "migrant_female", "refugee", "asylum", "other",
"concern", "refugee", "asylum", "other", "concern", "migrant",
"migrant_percent", "migrant_male", "migrant_female", "migrant",
"migrant_percent", "migrant_male", "migrant_female", "other",
"concern", "migrant", "migrant_percent", "migrant_male", "migrant_female",
"refugee", "asylum", "concern", "migrant", "migrant_percent",
"migrant_male", "migrant_female", "refugee", "asylum", "concern",
"refugee", "asylum", "other", "concern", "migrant", "migrant_percent",
"migrant_male", "migrant_female", "refugee", "asylum", "other",
"concern", "migrant", "migrant_percent", "migrant_male", "migrant_female",
"refugee", "asylum", "other", "concern", "migrant", "migrant_percent",
"migrant_male", "migrant_female", "refugee", "asylum", "concern",
"migrant", "migrant_percent", "migrant_male", "migrant_female",
"refugee", "asylum", "other", "concern", "refugee", "asylum",
"other", "concern", "migrant", "migrant_percent", "migrant_male",
"migrant_female", "refugee", "asylum", "other", "concern", "migrant",
"migrant_percent", "migrant_male", "migrant_female", "refugee",
"asylum", "other", "concern", "migrant", "migrant_percent", "migrant_male",
"migrant_female", "refugee", "asylum", "other", "concern", "migrant",
"migrant_percent", "migrant_male", "migrant_female", "refugee",
"asylum", "other", "concern", "refugee", "asylum", "other", "concern",
"migrant", "migrant_percent", "migrant_male", "migrant_female",
"migrant", "migrant_percent", "migrant_male", "migrant_female",
"migrant", "migrant_percent", "migrant_male", "migrant_female",
"migrant", "migrant_percent", "migrant_male", "migrant_female",
"migrant", "migrant_percent", "migrant_male", "migrant_female",
"refugee", "asylum", "concern", "migrant", "migrant_percent",
"migrant_male", "migrant_female", "refugee", "asylum", "concern",
"migrant", "migrant_percent", "migrant_male", "migrant_female",
"refugee", "asylum", "other", "concern", "migrant", "migrant_percent",
"migrant_male", "migrant_female", "refugee", "asylum", "other",
"concern", "refugee", "asylum", "other", "concern", "migrant",
"migrant_percent", "migrant_male", "migrant_female", "refugee",
"asylum", "concern", "migrant", "migrant_percent", "migrant_male",
"migrant_female", "refugee", "asylum", "concern", "migrant",
"migrant_percent", "migrant_male", "migrant_female", "refugee",
"asylum", "concern", "migrant", "migrant_percent", "migrant_male",
"migrant_female", "refugee", "asylum", "concern", "refugee",
"asylum", "other", "concern", "migrant", "migrant_percent", "migrant",
"migrant_percent", "migrant", "migrant_percent", "migrant", "migrant_percent",
"migrant", "migrant_percent", "migrant_male", "migrant_female",
"migrant", "migrant_percent", "migrant_male", "migrant_female",
"migrant", "migrant_percent", "migrant_male", "migrant_female",
"migrant", "migrant_percent", "migrant_male", "migrant_female",
"migrant", "migrant_percent", "migrant_male", "migrant_female",
"refugee", "asylum", "other", "concern", "migrant", "migrant_percent",
"migrant_male", "migrant_female", "refugee", "asylum", "other",
"concern", "migrant", "migrant_percent", "migrant_male", "migrant_female",
"refugee", "asylum", "concern", "migrant", "migrant_percent",
"migrant_male", "migrant_female", "refugee", "asylum", "concern",
"refugee", "asylum", "concern", "migrant", "migrant_percent",
"migrant_male", "migrant_female", "migrant", "migrant_percent",
"migrant_male", "migrant_female", "migrant", "migrant_percent",
"migrant_male", "migrant_female", "migrant", "migrant_percent",
"migrant_male", "migrant_female", "refugee", "asylum", "concern",
"refugee", "concern", "migrant", "migrant_percent", "migrant_male",
"migrant_female", "migrant", "migrant_percent", "migrant_male",
"migrant_female", "migrant", "migrant_percent", "migrant_male",
"migrant_female", "migrant", "migrant_percent", "migrant_male",
"migrant_female", "migrant", "migrant_percent", "migrant_male",
"migrant_female", "refugee", "asylum", "concern", "migrant",
"migrant_percent", "migrant_male", "migrant_female", "refugee",
"asylum", "other", "concern", "migrant", "migrant_percent", "migrant_male",
"migrant_female", "refugee", "other", "concern", "migrant", "migrant_percent",
"migrant_male", "migrant_female", "refugee", "asylum", "other",
"concern", "refugee", "asylum", "other", "concern", "migrant",
"migrant_percent", "migrant_male", "migrant_female", "migrant",
"migrant_percent", "migrant_male", "migrant_female", "migrant",
"migrant_percent", "migrant_male", "migrant_female", "asylum",
"concern", "refugee", "asylum", "concern", "refugee", "concern",
"migrant", "migrant_percent", "migrant_male", "migrant_female",
"migrant", "migrant_percent", "migrant", "migrant_percent", "asylum",
"concern", "migrant", "migrant_percent", "refugee", "concern",
"migrant", "migrant_percent", "refugee", "concern", "refugee",
"concern", "migrant", "migrant_percent", "migrant_male", "migrant_female",
"asylum", "other", "concern", "migrant", "migrant_percent", "migrant_male",
"migrant_female", "refugee", "asylum", "other", "concern", "migrant",
"migrant_percent", "migrant_male", "migrant_female", "refugee",
"asylum", "other", "concern", "migrant", "migrant_percent", "migrant_male",
"migrant_female", "refugee", "asylum", "other", "concern", "refugee",
"asylum", "other", "concern", "migrant", "migrant_percent", "migrant_male",
"migrant_female", "refugee", "asylum", "other", "concern", "migrant",
"migrant_percent", "migrant_male", "migrant_female", "refugee",
"asylum", "other", "concern", "migrant", "migrant_percent", "migrant_male",
"migrant_female", "refugee", "asylum", "other", "concern", "refugee",
"asylum", "other", "concern", "migrant", "migrant_percent", "migrant",
"migrant_percent", "asylum", "concern", "migrant", "migrant_percent",
"migrant", "migrant_percent", "migrant", "migrant_percent", "migrant_male",
"migrant_female", "refugee", "asylum", "other", "concern", "migrant",
"migrant_percent", "migrant_male", "migrant_female", "refugee",
"asylum", "concern", "migrant", "migrant_percent", "migrant_male",
"migrant_female", "refugee", "asylum", "concern", "migrant",
"migrant_percent", "migrant_male", "migrant_female", "refugee",
"asylum", "concern", "refugee", "asylum", "concern", "migrant",
"migrant_percent", "migrant_male", "migrant_female", "refugee",
"asylum", "other", "concern", "migrant", "migrant_percent", "migrant_male",
"migrant_female", "refugee", "asylum", "other", "concern", "migrant",
"migrant_percent", "migrant_male", "migrant_female", "refugee",
"asylum", "other", "concern", "migrant", "migrant_percent", "migrant_male",
"migrant_female", "refugee", "asylum", "other", "concern", "refugee",
"asylum", "other", "concern", "migrant", "migrant_percent", "migrant_male",
"migrant_female", "other", "concern", "migrant", "migrant_percent",
"migrant_male", "migrant_female", "other", "concern", "migrant",
"migrant_percent", "migrant_male", "migrant_female", "other",
"concern", "asylum", "other", "concern", "migrant", "migrant_percent",
"migrant_male", "migrant_female", "other", "concern", "other",
"concern", "migrant", "migrant_percent", "migrant_male", "migrant_female",
"refugee", "asylum", "other", "concern", "migrant", "migrant_percent",
"migrant_male", "migrant_female", "refugee", "asylum", "other",
"concern", "migrant", "migrant_percent", "migrant_male", "migrant_female",
"refugee", "asylum", "other", "concern", "migrant", "migrant_percent",
"migrant_male", "migrant_female", "refugee", "asylum", "other",
"concern", "refugee", "asylum", "other", "concern", "migrant",
"migrant_percent", "migrant", "migrant_percent", "migrant", "migrant_percent",
"refugee", "asylum", "concern", "migrant", "migrant_percent",
"refugee", "asylum", "concern", "refugee", "asylum", "other",
"concern", "migrant", "migrant_percent", "migrant_male", "migrant_female",
"refugee", "asylum", "other", "concern", "migrant", "migrant_percent",
"migrant_male", "migrant_female", "refugee", "asylum", "other",
"concern", "migrant", "migrant_percent", "migrant_male", "migrant_female",
"refugee", "asylum", "other", "concern", "migrant", "migrant_percent",
"migrant_male", "migrant_female", "refugee", "asylum", "other",
"concern", "refugee", "asylum", "other", "concern", "migrant",
"migrant_percent", "migrant_male", "migrant_female", "refugee",
"asylum", "other", "concern", "migrant", "migrant_percent", "migrant_male",
"migrant_female", "refugee", "asylum", "other", "concern", "migrant",
"migrant_percent", "migrant_male", "migrant_female", "refugee",
"asylum", "other", "concern", "migrant", "migrant_percent", "migrant_male",
"migrant_female", "refugee", "asylum", "other", "concern", "refugee",
"asylum", "other", "concern", "migrant", "migrant_percent", "migrant_male",
"migrant_female", "migrant", "migrant_percent", "migrant_male",
"migrant_female", "migrant", "migrant_percent", "migrant_male",
"migrant_female", "migrant", "migrant_percent", "migrant_male",
"migrant_female", "migrant", "migrant_percent", "migrant_male",
"migrant_female", "refugee", "asylum", "other", "concern", "migrant",
"migrant_percent", "migrant_male", "migrant_female", "refugee",
"asylum", "other", "concern", "migrant", "migrant_percent", "migrant_male",
"migrant_female", "refugee", "asylum", "concern", "migrant",
"migrant_percent", "migrant_male", "migrant_female", "refugee",
"asylum", "concern", "refugee", "asylum", "other", "concern",
"migrant", "migrant_percent", "migrant_male", "migrant_female",
"refugee", "asylum", "concern", "migrant", "migrant_percent",
"migrant_male", "migrant_female", "refugee", "asylum", "concern",
"migrant", "migrant_percent", "migrant_male", "migrant_female",
"refugee", "asylum", "other", "concern", "migrant", "migrant_percent",
"migrant_male", "migrant_female", "refugee", "asylum", "other",
"concern", "refugee", "asylum", "other", "concern", "migrant",
"migrant_percent", "migrant_male", "migrant_female", "refugee",
"asylum", "other", "concern", "migrant", "migrant_percent", "migrant_male",
"migrant_female", "refugee", "asylum", "other", "concern", "migrant",
"migrant_percent", "migrant_male", "migrant_female", "refugee",
"asylum", "other", "concern", "migrant", "migrant_percent", "migrant_male",
"migrant_female", "refugee", "asylum", "other", "concern", "refugee",
"asylum", "other", "concern", "migrant", "migrant_percent", "migrant_male",
"migrant_female", "refugee", "asylum", "other", "concern", "migrant",
"migrant_percent", "migrant_male", "migrant_female", "refugee",
"asylum", "other", "concern", "migrant", "migrant_percent", "migrant_male",
"migrant_female", "refugee", "asylum", "other", "concern", "migrant",
"migrant_percent", "migrant_male", "migrant_female", "refugee",
"asylum", "other", "concern", "refugee", "asylum", "other", "concern",
"migrant", "migrant_percent", "migrant", "migrant_percent", "migrant",
"migrant_percent", "migrant", "migrant_percent", "migrant", "migrant_percent",
"migrant_male", "migrant_female", "refugee", "asylum", "other",
"concern", "migrant", "migrant_percent", "migrant_male", "migrant_female",
"refugee", "asylum", "other", "concern", "migrant", "migrant_percent",
"migrant_male", "migrant_female", "refugee", "asylum", "other",
"concern", "migrant", "migrant_percent", "migrant_male", "migrant_female",
"refugee", "asylum", "other", "concern", "refugee", "asylum",
"other", "concern", "migrant", "migrant_percent", "migrant",
"migrant_percent", "migrant", "migrant_percent", "migrant", "migrant_percent",
"migrant", "migrant_percent", "migrant_male", "migrant_female",
"refugee", "other", "concern", "migrant", "migrant_percent",
"migrant_male", "migrant_female", "refugee", "asylum", "other",
"concern", "migrant", "migrant_percent", "migrant_male", "migrant_female",
"refugee", "asylum", "other", "concern", "migrant", "migrant_percent",
"migrant_male", "migrant_female", "refugee", "asylum", "other",
"concern", "refugee", "asylum", "other", "concern", "migrant",
"migrant_percent", "migrant_male", "migrant_female", "refugee",
"asylum", "concern", "migrant", "migrant_percent", "migrant_male",
"migrant_female", "refugee", "asylum", "concern", "migrant",
"migrant_percent", "migrant_male", "migrant_female", "refugee",
"asylum", "concern", "migrant", "migrant_percent", "migrant_male",
"migrant_female", "refugee", "asylum", "concern", "refugee",
"asylum", "concern", "migrant", "migrant_percent", "migrant_male",
"migrant_female", "refugee", "asylum", "other", "concern", "migrant",
"migrant_percent", "migrant_male", "migrant_female", "refugee",
"asylum", "other", "concern", "migrant", "migrant_percent", "migrant_male",
"migrant_female", "refugee", "asylum", "other", "concern", "migrant",
"migrant_percent", "migrant_male", "migrant_female", "refugee",
"asylum", "other", "concern", "refugee", "asylum", "other", "concern",
"migrant", "migrant_percent", "migrant", "migrant_percent", "migrant",
"migrant_percent", "refugee", "concern", "asylum", "concern",
"refugee", "concern", "migrant", "migrant_percent", "migrant",
"migrant_percent", "migrant_male", "migrant_female", "refugee",
"asylum", "other", "concern", "migrant", "migrant_percent", "migrant_male",
"migrant_female", "refugee", "asylum", "other", "concern", "migrant",
"migrant_percent", "migrant_male", "migrant_female", "refugee",
"asylum", "other", "concern", "migrant", "migrant_percent", "migrant_male",
"migrant_female", "refugee", "asylum", "other", "concern", "refugee",
"asylum", "other", "concern", "migrant", "migrant_percent", "migrant_male",
"migrant_female", "refugee", "asylum", "other", "concern", "migrant",
"migrant_percent", "migrant_male", "migrant_female", "refugee",
"asylum", "concern", "migrant", "migrant_percent", "migrant_male",
"migrant_female", "refugee", "asylum", "concern", "migrant",
"migrant_percent", "migrant_male", "migrant_female", "refugee",
"asylum", "concern", "refugee", "asylum", "other", "concern",
"migrant", "migrant_percent", "migrant_male", "migrant_female",
"refugee", "asylum", "concern", "migrant", "migrant_percent",
"migrant_male", "migrant_female", "refugee", "asylum", "concern",
"migrant", "migrant_percent", "migrant_male", "migrant_female",
"refugee", "asylum", "concern", "migrant", "migrant_percent",
"migrant_male", "migrant_female", "refugee", "asylum", "other",
"concern", "refugee", "asylum", "other", "concern", "migrant",
"migrant_percent", "migrant_male", "migrant_female", "refugee",
"asylum", "other", "concern", "migrant", "migrant_percent", "migrant_male",
"migrant_female", "refugee", "asylum", "other", "concern", "migrant",
"migrant_percent", "migrant_male", "migrant_female", "refugee",
"asylum", "concern", "migrant", "migrant_percent", "migrant_male",
"migrant_female", "refugee", "asylum", "other", "concern", "refugee",
"asylum", "other", "concern", "migrant", "migrant_percent", "migrant_male",
"migrant_female", "refugee", "asylum", "other", "concern", "migrant",
"migrant_percent", "migrant_male", "migrant_female", "refugee",
"asylum", "other", "concern", "migrant", "migrant_percent", "migrant_male",
"migrant_female", "refugee", "asylum", "other", "concern", "migrant",
"migrant_percent", "migrant_male", "migrant_female", "refugee",
"asylum", "other", "concern", "refugee", "asylum", "other", "concern",
"migrant", "migrant_percent", "migrant_male", "migrant_female",
"refugee", "asylum", "other", "concern", "migrant", "migrant_percent",
"migrant_male", "migrant_female", "refugee", "asylum", "other",
"concern", "migrant", "migrant_percent", "migrant_male", "migrant_female",
"refugee", "asylum", "other", "concern", "migrant", "migrant_percent",
"migrant_male", "migrant_female", "refugee", "asylum", "other",
"concern", "refugee", "asylum", "other", "concern", "migrant",
"migrant_percent", "migrant_male", "migrant_female", "refugee",
"concern", "migrant", "migrant_percent", "migrant_male", "migrant_female",
"refugee", "asylum", "other", "concern", "migrant", "migrant_percent",
"migrant_male", "migrant_female", "refugee", "asylum", "other",
"concern", "migrant", "migrant_percent", "migrant_male", "migrant_female",
"refugee", "asylum", "other", "concern", "refugee", "asylum",
"other", "concern", "migrant", "migrant_percent", "migrant_male",
"migrant_female", "migrant", "migrant_percent", "migrant_male",
"migrant_female", "migrant", "migrant_percent", "migrant_male",
"migrant_female", "migrant", "migrant_percent", "migrant_male",
"migrant_female", "migrant", "migrant_percent", "migrant_male",
"migrant_female", "refugee", "asylum", "concern", "migrant",
"migrant_percent", "migrant_male", "migrant_female", "refugee",
"asylum", "other", "concern", "migrant", "migrant_percent", "migrant_male",
"migrant_female", "refugee", "asylum", "other", "concern", "migrant",
"migrant_percent", "migrant_male", "migrant_female", "refugee",
"asylum", "other", "concern", "refugee", "asylum", "other", "concern",
"migrant", "migrant_percent", "migrant_male", "migrant_female",
"refugee", "asylum", "concern", "migrant", "migrant_percent",
"migrant_male", "migrant_female", "refugee", "asylum", "other",
"concern", "migrant", "migrant_percent", "migrant_male", "migrant_female",
"refugee", "asylum", "other", "concern", "migrant", "migrant_percent",
"migrant_male", "migrant_female", "refugee", "asylum", "other",
"concern", "refugee", "asylum", "other", "concern", "migrant",
"migrant_percent", "migrant_male", "migrant_female", "refugee",
"asylum", "other", "concern", "migrant", "migrant_percent", "migrant_male",
"migrant_female", "refugee", "asylum", "other", "concern", "migrant",
"migrant_percent", "migrant_male", "migrant_female", "refugee",
"asylum", "other", "concern", "migrant", "migrant_percent", "migrant_male",
"migrant_female", "refugee", "asylum", "other", "concern", "refugee",
"asylum", "other", "concern", "migrant", "migrant_percent", "migrant_male",
"migrant_female", "migrant", "migrant_percent", "migrant_male",
"migrant_female", "migrant", "migrant_percent", "migrant_male",
"migrant_female", "migrant", "migrant_percent", "migrant_male",
"migrant_female", "migrant", "migrant_percent", "migrant_male",
"migrant_female", "refugee", "asylum", "other", "concern", "migrant",
"migrant_percent", "migrant_male", "migrant_female", "refugee",
"asylum", "other", "concern", "migrant", "migrant_percent", "migrant_male",
"migrant_female", "refugee", "asylum", "other", "concern", "migrant",
"migrant_percent", "migrant_male", "migrant_female", "refugee",
"asylum", "other", "concern", "refugee", "asylum", "other", "concern",
"migrant", "migrant_percent", "migrant_male", "migrant_female",
"refugee", "asylum", "other", "concern", "migrant", "migrant_percent",
"migrant_male", "migrant_female", "refugee", "asylum", "other",
"concern", "migrant", "migrant_percent", "migrant_male", "migrant_female",
"refugee", "asylum", "other", "concern", "migrant", "migrant_percent",
"migrant_male", "migrant_female", "refugee", "asylum", "other",
"concern", "refugee", "asylum", "other", "concern", "migrant",
"migrant_percent", "migrant_male", "migrant_female", "refugee",
"asylum", "other", "concern", "migrant", "migrant_percent", "migrant_male",
"migrant_female", "refugee", "asylum", "other", "concern", "migrant",
"migrant_percent", "migrant_male", "migrant_female", "refugee",
"asylum", "other", "concern", "migrant", "migrant_percent", "migrant_male",
"migrant_female", "refugee", "asylum", "other", "concern", "refugee",
"asylum", "other", "concern", "migrant", "migrant_percent", "migrant",
"migrant_percent", "migrant", "migrant_percent", "migrant", "migrant_percent",
"migrant", "migrant_percent", "migrant", "migrant_percent", "migrant",
"migrant_percent", "refugee", "concern", "migrant", "migrant_percent",
"refugee", "concern", "other", "concern", "migrant", "migrant_percent",
"migrant_male", "migrant_female", "migrant", "migrant_percent",
"migrant_male", "migrant_female", "asylum", "other", "concern",
"migrant", "migrant_percent", "migrant_male", "migrant_female",
"refugee", "asylum", "other", "concern", "migrant", "migrant_percent",
"migrant_male", "migrant_female", "refugee", "asylum", "concern",
"migrant", "migrant_percent", "migrant", "migrant_percent", "migrant",
"migrant_percent", "migrant", "migrant_percent", "migrant", "migrant_percent",
"migrant_male", "migrant_female", "migrant", "migrant_percent",
"migrant_male", "migrant_female", "migrant", "migrant_percent",
"migrant_male", "migrant_female", "migrant", "migrant_percent",
"migrant_male", "migrant_female", "other", "concern", "other",
"concern", "migrant", "migrant_percent", "migrant_male", "migrant_female",
"migrant", "migrant_percent", "migrant_male", "migrant_female",
"migrant", "migrant_percent", "migrant_male", "migrant_female",
"refugee", "concern", "migrant", "migrant_percent", "migrant_male",
"migrant_female", "asylum", "concern", "migrant", "migrant_percent",
"migrant", "migrant_percent", "migrant", "migrant_percent", "migrant",
"migrant_percent", "migrant", "migrant_percent", "migrant_male",
"migrant_female", "migrant", "migrant_percent", "migrant_male",
"migrant_female", "migrant", "migrant_percent", "migrant_male",
"migrant_female", "migrant", "migrant_percent", "migrant_male",
"migrant_female", "migrant", "migrant_percent", "migrant_male",
"migrant_female", "refugee", "asylum", "other", "concern", "migrant",
"migrant_percent", "migrant_male", "migrant_female", "refugee",
"asylum", "other", "concern", "migrant", "migrant_percent", "migrant_male",
"migrant_female", "refugee", "asylum", "other", "concern", "migrant",
"migrant_percent", "migrant_male", "migrant_female", "refugee",
"asylum", "other", "concern", "refugee", "asylum", "other", "concern",
"migrant", "migrant_percent", "migrant_male", "migrant_female",
"refugee", "asylum", "other", "concern", "migrant", "migrant_percent",
"migrant_male", "migrant_female", "refugee", "asylum", "other",
"concern", "migrant", "migrant_percent", "migrant_male", "migrant_female",
"refugee", "asylum", "concern", "migrant", "migrant_percent",
"migrant_male", "migrant_female", "refugee", "asylum", "concern",
"refugee", "asylum", "other", "concern", "refugee", "asylum",
"concern", "migrant", "migrant_percent", "migrant_male", "migrant_female",
"refugee", "asylum", "other", "concern", "migrant", "migrant_percent",
"migrant_male", "migrant_female", "refugee", "asylum", "other",
"concern", "migrant", "migrant_percent", "migrant_male", "migrant_female",
"refugee", "asylum", "other", "concern", "migrant", "migrant_percent",
"migrant_male", "migrant_female", "refugee", "asylum", "other",
"concern", "refugee", "asylum", "other", "concern", "migrant",
"migrant_percent", "migrant_male", "migrant_female", "migrant",
"migrant_percent", "migrant_male", "migrant_female", "migrant",
"migrant_percent", "migrant_male", "migrant_female", "asylum",
"concern", "migrant", "migrant_percent", "migrant_male", "migrant_female",
"migrant", "migrant_percent", "migrant_male", "migrant_female",
"refugee", "asylum", "other", "concern", "migrant", "migrant_percent",
"migrant_male", "migrant_female", "refugee", "asylum", "other",
"concern", "migrant", "migrant_percent", "migrant_male", "migrant_female",
"refugee", "asylum", "concern", "refugee", "asylum", "concern",
"migrant", "migrant_percent", "migrant_male", "migrant_female",
"refugee", "other", "concern", "refugee", "concern", "migrant",
"migrant_percent", "migrant_male", "migrant_female", "refugee",
"asylum", "concern", "migrant", "migrant_percent", "migrant_male",
"migrant_female", "refugee", "concern", "migrant", "migrant_percent",
"migrant_male", "migrant_female", "other", "concern", "migrant",
"migrant_percent", "migrant_male", "migrant_female", "refugee",
"other", "concern", "other", "concern", "migrant", "migrant_percent",
"migrant", "migrant_percent", "refugee", "asylum", "concern",
"migrant", "migrant_percent", "refugee", "asylum", "concern",
"migrant", "migrant_percent", "refugee", "asylum", "other", "concern",
"asylum", "concern", "migrant", "migrant_percent", "migrant_male",
"migrant_female", "refugee", "asylum", "concern", "migrant",
"migrant_percent", "migrant_male", "migrant_female", "refugee",
"asylum", "other", "concern", "migrant", "migrant_percent", "migrant_male",
"migrant_female", "refugee", "asylum", "other", "concern", "migrant",
"migrant_percent", "migrant_male", "migrant_female", "refugee",
"asylum", "other", "concern", "refugee", "asylum", "other", "concern",
"migrant", "migrant_percent", "migrant_male", "migrant_female",
"refugee", "asylum", "other", "concern", "migrant", "migrant_percent",
"migrant_male", "migrant_female", "refugee", "asylum", "other",
"concern", "migrant", "migrant_percent", "migrant_male", "migrant_female",
"refugee", "asylum", "other", "concern", "migrant", "migrant_percent",
"migrant_male", "migrant_female", "refugee", "asylum", "other",
"concern", "refugee", "asylum", "other", "concern", "refugee",
"asylum", "concern", "migrant", "migrant_percent", "migrant_male",
"migrant_female", "migrant", "migrant_percent", "migrant_male",
"migrant_female", "migrant", "migrant_percent", "migrant_male",
"migrant_female", "refugee", "concern", "refugee", "concern",
"asylum", "concern", "migrant", "migrant_percent", "migrant_male",
"migrant_female", "migrant", "migrant_percent", "migrant_male",
"migrant_female", "refugee", "asylum", "other", "concern", "migrant",
"migrant_percent", "migrant_male", "migrant_female", "refugee",
"asylum", "other", "concern", "migrant", "migrant_percent", "migrant_male",
"migrant_female", "refugee", "asylum", "other", "concern", "migrant",
"migrant_percent", "migrant_male", "migrant_female", "refugee",
"asylum", "other", "concern", "refugee", "asylum", "other", "concern",
"migrant", "migrant_percent", "migrant_male", "migrant_female",
"refugee", "asylum", "other", "concern", "migrant", "migrant_percent",
"migrant_male", "migrant_female", "refugee", "asylum", "other",
"concern", "migrant", "migrant_percent", "migrant_male", "migrant_female",
"refugee", "asylum", "concern", "migrant", "migrant_percent",
"migrant_male", "migrant_female", "refugee", "asylum", "concern",
"refugee", "asylum", "concern", "migrant", "migrant_percent",
"migrant_male", "migrant_female", "migrant", "migrant_percent",
"migrant_male", "migrant_female", "refugee", "asylum", "other",
"concern", "migrant", "migrant_percent", "migrant_male", "migrant_female",
"refugee", "asylum", "other", "concern", "refugee", "asylum",
"other", "concern", "migrant", "migrant_percent", "migrant_male",
"migrant_female", "refugee", "other", "concern", "migrant", "migrant_percent",
"migrant_male", "migrant_female", "refugee", "asylum", "other",
"concern", "migrant", "migrant_percent", "migrant_male", "migrant_female",
"refugee", "asylum", "other", "concern", "migrant", "migrant_percent",
"migrant_male", "migrant_female", "refugee", "asylum", "other",
"concern", "refugee", "asylum", "other", "concern", "migrant",
"migrant_percent", "migrant_male", "migrant_female", "refugee",
"asylum", "other", "concern", "migrant", "migrant_percent", "migrant_male",
"migrant_female", "refugee", "asylum", "other", "concern", "migrant",
"migrant_percent", "migrant_male", "migrant_female", "refugee",
"asylum", "other", "concern", "migrant", "migrant_percent", "migrant_male",
"migrant_female", "refugee", "asylum", "other", "concern", "refugee",
"asylum", "other", "concern", "migrant", "migrant_percent", "migrant_male",
"migrant_female", "migrant", "migrant_percent", "migrant_male",
"migrant_female", "migrant", "migrant_percent", "migrant_male",
"migrant_female", "other", "concern", "migrant", "migrant_percent",
"migrant_male", "migrant_female", "migrant", "migrant_percent",
"migrant_male", "migrant_female", "refugee", "asylum", "other",
"concern", "migrant", "migrant_percent", "migrant_male", "migrant_female",
"refugee", "asylum", "other", "concern", "migrant", "migrant_percent",
"migrant_male", "migrant_female", "refugee", "asylum", "other",
"concern", "migrant", "migrant_percent", "migrant_male", "migrant_female",
"refugee", "asylum", "other", "concern", "refugee", "asylum",
"other", "concern", "migrant", "migrant_percent", "migrant_male",
"migrant_female", "migrant", "migrant_percent", "migrant_male",
"migrant_female", "refugee", "asylum", "concern", "migrant",
"migrant_percent", "migrant_male", "migrant_female", "refugee",
"concern", "refugee", "asylum", "other", "concern", "migrant",
"migrant_percent", "migrant_male", "migrant_female", "refugee",
"asylum", "concern", "refugee", "asylum", "concern", "migrant",
"migrant_percent", "migrant_male", "migrant_female", "refugee",
"asylum", "other", "concern", "migrant", "migrant_percent", "migrant_male",
"migrant_female", "refugee", "asylum", "other", "concern", "migrant",
"migrant_percent", "migrant_male", "migrant_female", "refugee",
"asylum", "other", "concern", "migrant", "migrant_percent", "migrant_male",
"migrant_female", "refugee", "asylum", "other", "concern", "refugee",
"asylum", "other", "concern", "migrant", "migrant_percent", "migrant_male",
"migrant_female", "refugee", "asylum", "other", "concern", "migrant",
"migrant_percent", "migrant_male", "migrant_female", "refugee",
"asylum", "other", "concern", "migrant", "migrant_percent", "migrant_male",
"migrant_female", "refugee", "asylum", "other", "concern", "migrant",
"migrant_percent", "migrant_male", "migrant_female", "refugee",
"asylum", "concern", "refugee", "asylum", "other", "concern",
"migrant", "migrant_percent", "migrant_male", "migrant_female",
"refugee", "asylum", "other", "concern", "migrant", "migrant_percent",
"migrant_male", "migrant_female", "refugee", "asylum", "other",
"concern", "migrant", "migrant_percent", "migrant_male", "migrant_female",
"refugee", "asylum", "other", "concern", "migrant", "migrant_percent",
"migrant_male", "migrant_female", "refugee", "asylum", "other",
"concern", "refugee", "asylum", "other", "concern", "migrant",
"migrant_percent", "migrant_male", "migrant_female", "refugee",
"asylum", "other", "concern", "migrant", "migrant_percent", "migrant_male",
"migrant_female", "refugee", "asylum", "other", "concern", "migrant",
"migrant_percent", "migrant_male", "migrant_female", "refugee",
"asylum", "other", "concern", "migrant", "migrant_percent", "migrant_male",
"migrant_female", "refugee", "asylum", "other", "concern", "refugee",
"asylum", "other", "concern", "migrant", "migrant_percent", "migrant_male",
"migrant_female", "refugee", "asylum", "other", "concern", "migrant",
"migrant_percent", "migrant_male", "migrant_female", "refugee",
"asylum", "other", "concern", "migrant", "migrant_percent", "migrant_male",
"migrant_female", "refugee", "asylum", "other", "concern", "migrant",
"migrant_percent", "migrant_male", "migrant_female", "refugee",
"asylum", "other", "concern", "refugee", "asylum", "other", "concern",
"migrant", "migrant_percent", "migrant_male", "migrant_female",
"refugee", "asylum", "concern", "migrant", "migrant_percent",
"migrant_male", "migrant_female", "refugee", "asylum", "concern",
"migrant", "migrant_percent", "migrant_male", "migrant_female",
"other", "concern", "other", "concern", "migrant", "migrant_percent",
"migrant_male", "migrant_female", "migrant", "migrant_percent",
"migrant_male", "migrant_female", "refugee", "asylum", "other",
"concern", "migrant", "migrant_percent", "migrant_male", "migrant_female",
"refugee", "asylum", "other", "concern", "migrant", "migrant_percent",
"migrant_male", "migrant_female", "refugee", "asylum", "concern",
"refugee", "asylum", "other", "concern", "migrant", "migrant_percent",
"migrant_male", "migrant_female", "refugee", "asylum", "concern",
"refugee", "asylum", "concern", "migrant", "migrant_percent",
"migrant", "migrant_percent", "migrant", "migrant_percent", "migrant",
"migrant_percent", "migrant", "migrant_percent", "migrant_male",
"migrant_female", "migrant", "migrant_percent", "migrant_male",
"migrant_female", "asylum", "concern", "migrant", "migrant_percent",
"migrant_male", "migrant_female", "migrant", "migrant_percent",
"migrant_male", "migrant_female", "asylum", "concern", "migrant",
"migrant_percent", "migrant_male", "migrant_female", "migrant",
"migrant_percent", "migrant_male", "migrant_female", "refugee",
"asylum", "concern", "migrant", "migrant_percent", "migrant_male",
"migrant_female", "refugee", "asylum", "concern", "migrant",
"migrant_percent", "migrant_male", "migrant_female", "refugee",
"asylum", "other", "concern", "refugee", "asylum", "other", "concern",
"migrant", "migrant_percent", "migrant_male", "migrant_female",
"refugee", "asylum", "concern", "migrant", "migrant_percent",
"migrant_male", "migrant_female", "refugee", "asylum", "other",
"concern", "migrant", "migrant_percent", "migrant_male", "migrant_female",
"refugee", "asylum", "other", "concern", "migrant", "migrant_percent",
"migrant_male", "migrant_female", "refugee", "asylum", "other",
"concern", "refugee", "asylum", "other", "concern", "migrant",
"migrant_percent", "migrant_male", "migrant_female", "refugee",
"asylum", "other", "concern", "migrant", "migrant_percent", "migrant_male",
"migrant_female", "refugee", "asylum", "other", "concern", "migrant",
"migrant_percent", "migrant_male", "migrant_female", "refugee",
"asylum", "other", "concern", "migrant", "migrant_percent", "migrant_male",
"migrant_female", "refugee", "asylum", "other", "concern", "refugee",
"asylum", "other", "concern", "migrant", "migrant_percent", "migrant_male",
"migrant_female", "refugee", "asylum", "other", "concern", "migrant",
"migrant_percent", "migrant_male", "migrant_female", "refugee",
"other", "concern", "migrant", "migrant_percent", "migrant_male",
"migrant_female", "refugee", "other", "concern", "migrant", "migrant_percent",
"migrant_male", "migrant_female", "refugee", "other", "concern",
"refugee", "other", "concern", "migrant", "migrant_percent",
"migrant", "migrant_percent", "migrant", "migrant_percent", "refugee",
"asylum", "concern", "migrant", "migrant_percent", "refugee",
"asylum", "concern", "refugee", "asylum", "concern", "refugee",
"concern", "migrant", "migrant_percent", "migrant", "migrant_percent",
"migrant", "migrant_percent", "migrant", "migrant_percent", "migrant",
"migrant_percent", "migrant_male", "migrant_female", "refugee",
"asylum", "other", "concern", "migrant", "migrant_percent", "migrant_male",
"migrant_female", "refugee", "asylum", "other", "concern", "migrant",
"migrant_percent", "migrant_male", "migrant_female", "refugee",
"asylum", "other", "concern", "migrant", "migrant_percent", "migrant_male",
"migrant_female", "refugee", "asylum", "other", "concern", "refugee",
"asylum", "other", "concern", "migrant", "migrant_percent", "migrant_male",
"migrant_female", "refugee", "asylum", "other", "concern", "migrant",
"migrant_percent", "migrant_male", "migrant_female", "refugee",
"asylum", "other", "concern", "migrant", "migrant_percent", "migrant_male",
"migrant_female", "refugee", "asylum", "other", "concern", "migrant",
"migrant_percent", "migrant_male", "migrant_female", "refugee",
"asylum", "other", "concern", "refugee", "asylum", "other", "concern",
"migrant", "migrant_percent", "migrant_male", "migrant_female",
"refugee", "asylum", "concern", "migrant", "migrant_percent",
"migrant_male", "migrant_female", "refugee", "asylum", "concern",
"migrant", "migrant_percent", "migrant_male", "migrant_female",
"refugee", "asylum", "concern", "migrant", "migrant_percent",
"migrant_male", "migrant_female", "refugee", "asylum", "other",
"concern", "refugee", "asylum", "other", "concern", "migrant",
"migrant_percent", "migrant_male", "migrant_female", "refugee",
"asylum", "other", "concern", "migrant", "migrant_percent", "migrant_male",
"migrant_female", "refugee", "asylum", "other", "concern", "migrant",
"migrant_percent", "migrant_male", "migrant_female", "refugee",
"asylum", "other", "concern", "migrant", "migrant_percent", "migrant_male",
"migrant_female", "refugee", "asylum", "other", "concern", "refugee",
"asylum", "other", "concern", "migrant", "migrant_percent", "migrant_male",
"migrant_female", "refugee", "asylum", "other", "concern", "migrant",
"migrant_percent", "migrant_male", "migrant_female", "refugee",
"asylum", "other", "concern", "migrant", "migrant_percent", "migrant_male",
"migrant_female", "refugee", "asylum", "other", "concern", "migrant",
"migrant_percent", "migrant_male", "migrant_female", "refugee",
"asylum", "other", "concern", "refugee", "asylum", "other", "concern",
"migrant", "migrant_percent", "migrant_male", "migrant_female",
"refugee", "asylum", "other", "migrant", "migrant_percent", "migrant_male",
"migrant_female", "refugee", "asylum", "other", "migrant", "migrant_percent",
"migrant_male", "migrant_female", "refugee", "asylum", "concern",
"migrant", "migrant_percent", "migrant_male", "migrant_female",
"refugee", "asylum", "concern", "refugee", "asylum", "other",
"concern", "migrant", "migrant_percent", "migrant_male", "migrant_female",
"migrant", "migrant_percent", "migrant_male", "migrant_female",
"migrant", "migrant_percent", "migrant_male", "migrant_female",
"migrant", "migrant_percent", "migrant_male", "migrant_female",
"migrant", "migrant_percent", "migrant_male", "migrant_female",
"refugee", "asylum", "concern", "migrant", "migrant_percent",
"migrant_male", "migrant_female", "refugee", "asylum", "concern",
"migrant", "migrant_percent", "migrant_male", "migrant_female",
"refugee", "asylum", "concern", "migrant", "migrant_percent",
"migrant_male", "migrant_female", "refugee", "asylum", "other",
"concern", "refugee", "asylum", "other", "concern", "migrant",
"migrant_percent", "migrant_male", "migrant_female", "refugee",
"asylum", "other", "concern", "migrant", "migrant_percent", "migrant_male",
"migrant_female", "refugee", "other", "concern", "migrant", "migrant_percent",
"migrant_male", "migrant_female", "refugee", "other", "concern",
"migrant", "migrant_percent", "migrant_male", "migrant_female",
"refugee", "other", "concern", "refugee", "other", "concern",
"migrant", "migrant_percent", "migrant_male", "migrant_female",
"migrant", "migrant_percent", "migrant_male", "migrant_female",
"refugee", "concern", "migrant", "migrant_percent", "migrant_male",
"migrant_female", "asylum", "concern", "migrant", "migrant_percent",
"migrant_male", "migrant_female", "asylum", "concern", "migrant",
"migrant_percent", "migrant_male", "migrant_female", "refugee",
"asylum", "other", "concern", "migrant", "migrant_percent", "migrant_male",
"migrant_female", "refugee", "asylum", "concern", "migrant",
"migrant_percent", "migrant_male", "migrant_female", "refugee",
"asylum", "concern", "migrant", "migrant_percent", "migrant_male",
"migrant_female", "refugee", "asylum", "other", "concern", "refugee",
"asylum", "other", "concern", "migrant", "migrant_percent", "migrant_male",
"migrant_female", "refugee", "other", "concern", "migrant", "migrant_percent",
"migrant_male", "migrant_female", "refugee", "other", "concern",
"migrant", "migrant_percent", "migrant_male", "migrant_female",
"other", "concern", "migrant", "migrant_percent", "migrant_male",
"migrant_female", "refugee", "other", "concern", "other", "concern",
"migrant", "migrant_percent", "migrant", "migrant_percent", "migrant",
"migrant_percent", "migrant", "migrant_percent", "migrant", "migrant_percent",
"migrant_male", "migrant_female", "migrant", "migrant_percent",
"migrant_male", "migrant_female", "migrant", "migrant_percent",
"migrant_male", "migrant_female", "migrant", "migrant_percent",
"migrant_male", "migrant_female", "migrant", "migrant_percent",
"migrant_male", "migrant_female", "refugee", "asylum", "other",
"concern", "migrant", "migrant_percent", "migrant_male", "migrant_female",
"refugee", "asylum", "other", "concern", "migrant", "migrant_percent",
"migrant_male", "migrant_female", "refugee", "asylum", "other",
"concern", "migrant", "migrant_percent", "migrant_male", "migrant_female",
"refugee", "asylum", "other", "concern", "refugee", "asylum",
"other", "concern", "migrant", "migrant_percent", "migrant_male",
"migrant_female", "refugee", "asylum", "other", "concern", "migrant",
"migrant_percent", "migrant_male", "migrant_female", "refugee",
"asylum", "other", "concern", "migrant", "migrant_percent", "migrant_male",
"migrant_female", "refugee", "asylum", "other", "concern", "migrant",
"migrant_percent", "migrant_male", "migrant_female", "refugee",
"asylum", "other", "concern", "refugee", "asylum", "other", "concern",
"migrant", "migrant_percent", "migrant_male", "migrant_female",
"refugee", "asylum", "other", "concern", "migrant", "migrant_percent",
"migrant_male", "migrant_female", "refugee", "asylum", "concern",
"migrant", "migrant_percent", "migrant_male", "migrant_female",
"refugee", "asylum", "other", "concern", "migrant", "migrant_percent",
"migrant_male", "migrant_female", "refugee", "asylum", "other",
"concern", "refugee", "asylum", "other", "concern"), Series = c("International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Total population of concern to UNHCR (number)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Total population of concern to UNHCR (number)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Total population of concern to UNHCR (number)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Total population of concern to UNHCR (number)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Total population of concern to UNHCR (number)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Total population of concern to UNHCR (number)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Total population of concern to UNHCR (number)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"Total refugees and people in refugee-like situations (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"Other of concern to UNHCR (number)", "Total population of concern to UNHCR (number)",
"Other of concern to UNHCR (number)", "Total population of concern to UNHCR (number)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Asylum seekers, including pending cases (number)", "Total population of concern to UNHCR (number)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Total population of concern to UNHCR (number)",
"Other of concern to UNHCR (number)", "Total population of concern to UNHCR (number)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Total population of concern to UNHCR (number)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Total population of concern to UNHCR (number)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Total population of concern to UNHCR (number)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Asylum seekers, including pending cases (number)", "Total population of concern to UNHCR (number)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Asylum seekers, including pending cases (number)", "Total population of concern to UNHCR (number)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Total population of concern to UNHCR (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Other of concern to UNHCR (number)", "Total population of concern to UNHCR (number)",
"Other of concern to UNHCR (number)", "Total population of concern to UNHCR (number)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Total population of concern to UNHCR (number)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Total population of concern to UNHCR (number)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Total population of concern to UNHCR (number)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Total population of concern to UNHCR (number)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Total population of concern to UNHCR (number)",
"Total refugees and people in refugee-like situations (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Asylum seekers, including pending cases (number)", "Total population of concern to UNHCR (number)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Total population of concern to UNHCR (number)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Total population of concern to UNHCR (number)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Total population of concern to UNHCR (number)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Total population of concern to UNHCR (number)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Total population of concern to UNHCR (number)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Total population of concern to UNHCR (number)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Total population of concern to UNHCR (number)", "Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Total population of concern to UNHCR (number)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Asylum seekers, including pending cases (number)", "Total population of concern to UNHCR (number)",
"Asylum seekers, including pending cases (number)", "Total population of concern to UNHCR (number)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Total population of concern to UNHCR (number)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Asylum seekers, including pending cases (number)", "Total population of concern to UNHCR (number)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Total population of concern to UNHCR (number)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Total population of concern to UNHCR (number)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Total population of concern to UNHCR (number)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Total population of concern to UNHCR (number)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"Asylum seekers, including pending cases (number)", "Total population of concern to UNHCR (number)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Total population of concern to UNHCR (number)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"Total refugees and people in refugee-like situations (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"Asylum seekers, including pending cases (number)", "Total population of concern to UNHCR (number)",
"Total refugees and people in refugee-like situations (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"Other of concern to UNHCR (number)", "Total population of concern to UNHCR (number)",
"Other of concern to UNHCR (number)", "Total population of concern to UNHCR (number)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Other of concern to UNHCR (number)", "Total population of concern to UNHCR (number)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Other of concern to UNHCR (number)", "Total population of concern to UNHCR (number)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Other of concern to UNHCR (number)", "Total population of concern to UNHCR (number)",
"Other of concern to UNHCR (number)", "Total population of concern to UNHCR (number)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Total population of concern to UNHCR (number)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Total population of concern to UNHCR (number)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Total population of concern to UNHCR (number)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Other of concern to UNHCR (number)", "Total population of concern to UNHCR (number)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Other of concern to UNHCR (number)", "Total population of concern to UNHCR (number)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Other of concern to UNHCR (number)", "Total population of concern to UNHCR (number)",
"Other of concern to UNHCR (number)", "Total population of concern to UNHCR (number)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Total population of concern to UNHCR (number)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Total population of concern to UNHCR (number)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Total population of concern to UNHCR (number)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Total population of concern to UNHCR (number)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Total population of concern to UNHCR (number)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Total population of concern to UNHCR (number)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Total population of concern to UNHCR (number)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Total population of concern to UNHCR (number)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Total population of concern to UNHCR (number)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Total population of concern to UNHCR (number)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Total population of concern to UNHCR (number)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Total population of concern to UNHCR (number)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "Total refugees and people in refugee-like situations (number)",
"Other of concern to UNHCR (number)", "Total population of concern to UNHCR (number)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Total population of concern to UNHCR (number)", "Total refugees and people in refugee-like situations (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Asylum seekers, including pending cases (number)", "Total population of concern to UNHCR (number)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Asylum seekers, including pending cases (number)", "Total population of concern to UNHCR (number)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Total population of concern to UNHCR (number)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Total population of concern to UNHCR (number)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Total population of concern to UNHCR (number)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Total population of concern to UNHCR (number)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Total population of concern to UNHCR (number)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Total population of concern to UNHCR (number)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Total population of concern to UNHCR (number)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Total population of concern to UNHCR (number)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Total population of concern to UNHCR (number)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Total population of concern to UNHCR (number)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Total population of concern to UNHCR (number)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Total population of concern to UNHCR (number)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Total population of concern to UNHCR (number)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Total population of concern to UNHCR (number)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Total population of concern to UNHCR (number)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Total population of concern to UNHCR (number)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Other of concern to UNHCR (number)", "Total population of concern to UNHCR (number)",
"Total refugees and people in refugee-like situations (number)",
"Other of concern to UNHCR (number)", "Total population of concern to UNHCR (number)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Total population of concern to UNHCR (number)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Total population of concern to UNHCR (number)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Total population of concern to UNHCR (number)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Total population of concern to UNHCR (number)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Total population of concern to UNHCR (number)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Total population of concern to UNHCR (number)",
"Total refugees and people in refugee-like situations (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Other of concern to UNHCR (number)", "Total population of concern to UNHCR (number)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Total population of concern to UNHCR (number)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Total population of concern to UNHCR (number)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Total population of concern to UNHCR (number)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Total population of concern to UNHCR (number)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Total population of concern to UNHCR (number)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Total population of concern to UNHCR (number)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Total population of concern to UNHCR (number)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Total population of concern to UNHCR (number)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Total population of concern to UNHCR (number)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Asylum seekers, including pending cases (number)", "Total population of concern to UNHCR (number)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Total population of concern to UNHCR (number)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Total population of concern to UNHCR (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Total population of concern to UNHCR (number)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Total population of concern to UNHCR (number)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Total population of concern to UNHCR (number)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Total population of concern to UNHCR (number)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Total population of concern to UNHCR (number)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Total population of concern to UNHCR (number)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Total population of concern to UNHCR (number)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Total population of concern to UNHCR (number)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Total population of concern to UNHCR (number)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Total population of concern to UNHCR (number)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Total population of concern to UNHCR (number)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Asylum seekers, including pending cases (number)", "Total population of concern to UNHCR (number)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Total population of concern to UNHCR (number)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Total population of concern to UNHCR (number)",
"Asylum seekers, including pending cases (number)", "Total population of concern to UNHCR (number)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Total population of concern to UNHCR (number)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Other of concern to UNHCR (number)", "Total population of concern to UNHCR (number)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Total population of concern to UNHCR (number)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Total population of concern to UNHCR (number)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Total population of concern to UNHCR (number)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Total population of concern to UNHCR (number)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Total population of concern to UNHCR (number)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Total population of concern to UNHCR (number)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Other of concern to UNHCR (number)", "Total population of concern to UNHCR (number)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Total population of concern to UNHCR (number)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Total population of concern to UNHCR (number)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Total population of concern to UNHCR (number)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Total population of concern to UNHCR (number)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Total population of concern to UNHCR (number)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Total population of concern to UNHCR (number)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Total population of concern to UNHCR (number)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Total population of concern to UNHCR (number)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Total population of concern to UNHCR (number)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Other of concern to UNHCR (number)", "Total population of concern to UNHCR (number)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Other of concern to UNHCR (number)", "Total population of concern to UNHCR (number)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Total population of concern to UNHCR (number)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Total population of concern to UNHCR (number)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Total population of concern to UNHCR (number)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Total population of concern to UNHCR (number)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Total population of concern to UNHCR (number)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Total population of concern to UNHCR (number)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Total population of concern to UNHCR (number)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Total population of concern to UNHCR (number)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Total population of concern to UNHCR (number)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Total population of concern to UNHCR (number)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Total population of concern to UNHCR (number)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Total population of concern to UNHCR (number)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Total population of concern to UNHCR (number)",
"Total refugees and people in refugee-like situations (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Total population of concern to UNHCR (number)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Other of concern to UNHCR (number)", "Total population of concern to UNHCR (number)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Asylum seekers, including pending cases (number)", "Total population of concern to UNHCR (number)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Total population of concern to UNHCR (number)",
"Total refugees and people in refugee-like situations (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"Asylum seekers, including pending cases (number)", "Total population of concern to UNHCR (number)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"Total refugees and people in refugee-like situations (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"Total refugees and people in refugee-like situations (number)",
"Total population of concern to UNHCR (number)", "Total refugees and people in refugee-like situations (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"Asylum seekers, including pending cases (number)", "Total population of concern to UNHCR (number)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Total population of concern to UNHCR (number)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Total population of concern to UNHCR (number)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Total population of concern to UNHCR (number)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Total population of concern to UNHCR (number)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Other of concern to UNHCR (number)", "Total population of concern to UNHCR (number)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Other of concern to UNHCR (number)", "Total population of concern to UNHCR (number)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Other of concern to UNHCR (number)", "Total population of concern to UNHCR (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Other of concern to UNHCR (number)", "Total population of concern to UNHCR (number)",
"Other of concern to UNHCR (number)", "Total population of concern to UNHCR (number)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Total population of concern to UNHCR (number)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Total population of concern to UNHCR (number)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Total population of concern to UNHCR (number)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Total population of concern to UNHCR (number)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Total population of concern to UNHCR (number)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Total population of concern to UNHCR (number)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Other of concern to UNHCR (number)", "Total population of concern to UNHCR (number)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Total population of concern to UNHCR (number)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Total population of concern to UNHCR (number)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Total population of concern to UNHCR (number)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Total population of concern to UNHCR (number)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Total population of concern to UNHCR (number)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"Total refugees and people in refugee-like situations (number)",
"Total population of concern to UNHCR (number)", "Asylum seekers, including pending cases (number)",
"Total population of concern to UNHCR (number)", "Total refugees and people in refugee-like situations (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Total population of concern to UNHCR (number)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Total population of concern to UNHCR (number)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Total population of concern to UNHCR (number)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Total population of concern to UNHCR (number)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Total population of concern to UNHCR (number)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Total population of concern to UNHCR (number)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Total population of concern to UNHCR (number)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Total population of concern to UNHCR (number)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Total population of concern to UNHCR (number)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"Total refugees and people in refugee-like situations (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"Total refugees and people in refugee-like situations (number)",
"Total population of concern to UNHCR (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Total population of concern to UNHCR (number)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Other of concern to UNHCR (number)", "Total population of concern to UNHCR (number)",
"Other of concern to UNHCR (number)", "Total population of concern to UNHCR (number)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Asylum seekers, including pending cases (number)", "Total population of concern to UNHCR (number)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Total population of concern to UNHCR (number)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Total population of concern to UNHCR (number)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Total population of concern to UNHCR (number)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Asylum seekers, including pending cases (number)", "Total population of concern to UNHCR (number)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Total population of concern to UNHCR (number)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Total population of concern to UNHCR (number)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Other of concern to UNHCR (number)", "Total population of concern to UNHCR (number)",
"Total refugees and people in refugee-like situations (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Total population of concern to UNHCR (number)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Other of concern to UNHCR (number)", "Total population of concern to UNHCR (number)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Other of concern to UNHCR (number)", "Total population of concern to UNHCR (number)",
"Other of concern to UNHCR (number)", "Total population of concern to UNHCR (number)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Total population of concern to UNHCR (number)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Total population of concern to UNHCR (number)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "Asylum seekers, including pending cases (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Total population of concern to UNHCR (number)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Total population of concern to UNHCR (number)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Total population of concern to UNHCR (number)", "Total refugees and people in refugee-like situations (number)",
"Total population of concern to UNHCR (number)", "Asylum seekers, including pending cases (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Total population of concern to UNHCR (number)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Total population of concern to UNHCR (number)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Total population of concern to UNHCR (number)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Other of concern to UNHCR (number)", "Total population of concern to UNHCR (number)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Other of concern to UNHCR (number)", "Total population of concern to UNHCR (number)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Total population of concern to UNHCR (number)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Total population of concern to UNHCR (number)", "Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Total population of concern to UNHCR (number)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Total population of concern to UNHCR (number)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Total population of concern to UNHCR (number)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Total population of concern to UNHCR (number)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Total population of concern to UNHCR (number)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Other of concern to UNHCR (number)", "Total population of concern to UNHCR (number)",
"Other of concern to UNHCR (number)", "Total population of concern to UNHCR (number)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Total population of concern to UNHCR (number)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Total population of concern to UNHCR (number)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Total population of concern to UNHCR (number)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Asylum seekers, including pending cases (number)", "Total population of concern to UNHCR (number)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Asylum seekers, including pending cases (number)", "Total population of concern to UNHCR (number)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Total population of concern to UNHCR (number)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Total population of concern to UNHCR (number)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Total population of concern to UNHCR (number)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Other of concern to UNHCR (number)", "Total population of concern to UNHCR (number)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Other of concern to UNHCR (number)", "Total population of concern to UNHCR (number)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Other of concern to UNHCR (number)", "Total population of concern to UNHCR (number)",
"Total refugees and people in refugee-like situations (number)",
"Other of concern to UNHCR (number)", "Total population of concern to UNHCR (number)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Total population of concern to UNHCR (number)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Total population of concern to UNHCR (number)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Total population of concern to UNHCR (number)",
"Total refugees and people in refugee-like situations (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Total population of concern to UNHCR (number)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Total population of concern to UNHCR (number)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Total population of concern to UNHCR (number)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Total population of concern to UNHCR (number)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Total population of concern to UNHCR (number)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Total population of concern to UNHCR (number)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Total population of concern to UNHCR (number)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Total population of concern to UNHCR (number)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Other of concern to UNHCR (number)", "Total population of concern to UNHCR (number)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Other of concern to UNHCR (number)", "Total population of concern to UNHCR (number)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Other of concern to UNHCR (number)", "Total population of concern to UNHCR (number)",
"Total refugees and people in refugee-like situations (number)",
"Other of concern to UNHCR (number)", "Total population of concern to UNHCR (number)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Asylum seekers, including pending cases (number)", "Total population of concern to UNHCR (number)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Asylum seekers, including pending cases (number)", "Total population of concern to UNHCR (number)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Total population of concern to UNHCR (number)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Total population of concern to UNHCR (number)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Other of concern to UNHCR (number)", "Total population of concern to UNHCR (number)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Other of concern to UNHCR (number)", "Total population of concern to UNHCR (number)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Other of concern to UNHCR (number)", "Total population of concern to UNHCR (number)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Other of concern to UNHCR (number)", "Total population of concern to UNHCR (number)",
"Other of concern to UNHCR (number)", "Total population of concern to UNHCR (number)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Total population of concern to UNHCR (number)",
"International migrant stock: Both sexes (number)", "International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "International migrant stock: Both sexes (number)",
"International migrant stock: Both sexes (% total population)",
"International migrant stock: Male (% total Population)", "International migrant stock: Female (% total Population)",
"Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)", "Total refugees and people in refugee-like situations (number)",
"Asylum seekers, including pending cases (number)", "Other of concern to UNHCR (number)",
"Total population of concern to UNHCR (number)"), Value = c(87314,
0.3, 0.4, 0.3, 32, 14, 159551, 159597, 102276, 0.4, 0.4, 0.3,
6434, 30, 1193523, 1199987, 339432, 1, 1, 1, 225714, 101, 1195604,
1421419, 144098, 0.4, 0.3, 0.4, 72290, 178, 2730389, 2802857,
59524, 257, 3552514, 3612295, 64739, 2.1, 2.1, 2.1, 56, 35, 1,
92, 52784, 1.8, 1.8, 1.8, 76, 23, 99, 52031, 1.8, 1.8, 1.8, 154,
501, 7443, 8098, 48810, 1.7, 1.7, 1.7, 129, 2, 3492, 3623, 2306,
6, 3981, 6293, 197728, 0.6, 0.6, 0.5, 94101, 306, 94407, 217268,
0.6, 0.6, 0.6, 94144, 304, 94448, 239473, 0.6, 0.6, 0.6, 94144,
5892, 100036, 250378, 0.6, 0.6, 0.5, 97391, 1859, 99250, 98679,
3141, 101820, 24233, 40.7, 23555, 42, 23513, 42.1, 23608, 42.8,
50298, 63.8, 52053, 61.6, 42264, 54.2, 45574, 59, 62331, 0.3,
0.3, 0.3, 13984, 885, 45, 14914, 336367, 1.4, 1.4, 1.5, 15155,
4241, 19396, 632178, 2.3, 2.2, 2.3, 15555, 30143, 2887, 45698,
656434, 2, 2, 2, 25562, 30288, 62, 55912, 26151, 30275, 199,
56625, 4684, 37.6, 5103, 38, 5471, 38.3, 1, 1, 5715, 38.1, 17,
17, 42, 42, 24741, 30.4, 28.6, 32, 26412, 30, 28, 31.9, 28082,
30, 27.8, 32, 10, 10, 29386, 30, 27.8, 32.1, 1, 1, 2, 95, 95,
1674163, 4.3, 4.1, 4.5, 3074, 825, 2, 3901, 1805957, 4.4, 4.2,
4.6, 3276, 947, 4223, 2086301, 4.8, 4.6, 5.1, 3523, 897, 4420,
2281728, 5, 4.8, 5.3, 3953, 9034, 175783, 188770, 4073, 11313,
165550, 180936, 469189, 15.7, 13.7, 17.6, 219550, 70, 219620,
211147, 7.3, 6.4, 8.2, 3296, 23, 82525, 85844, 191199, 6.5, 5.6,
7.3, 15690, 114, 238, 16042, 190349, 6.4, 5.6, 7.2, 17985, 164,
976, 19125, 34274, 395, 816, 35485, 32540, 32.5, 30.6, 34.3,
34328, 33.8, 31.6, 35.7, 1, 1, 36114, 34.6, 32.5, 36.5, 2, 2,
1, 292, 293, 411, 15598, 16009, 53593, 50.2, 48, 52.2, 17000,
17000, 17000, 17000, 4878030, 24.2, 24, 24.3, 64964, 1822, 8,
66794, 5882980, 26.6, 26.4, 26.7, 21805, 3760, 15, 25580, 6729730,
28.1, 28, 28.2, 35582, 22837, 58419, 7685860, 30.1, 30, 30.3,
58607, 78800, 137407, 53523, 84950, 17252, 148076, 1127164, 13.7,
13.4, 13.9, 21230, 40710, 830, 62770, 1274901, 15.2, 14.8, 15.5,
42630, 25625, 470, 68725, 1483123, 17.1, 16.8, 17.3, 60747, 30900,
570, 92217, 1738183, 19.3, 19.1, 19.5, 137936, 23005, 1128, 162069,
233524, 34457, 3219, 269228, 301834, 3.5, 3.2, 3.8, 3004, 115,
581194, 584313, 276901, 3.1, 2.9, 3.2, 1891, 17, 594969, 596877,
264359, 2.7, 2.6, 2.8, 1357, 262, 626477, 628096, 252228, 2.5,
2.4, 2.6, 1120, 63, 655911, 657094, 6466, 121, 658424, 665011,
45531, 14, 15, 13.1, 54745, 15.4, 16.2, 14.7, 28, 9, 37, 59241,
15.8, 16.5, 15.2, 7, 19, 30, 56, 11, 17, 97, 125, 63583, 16.2,
16.8, 15.5, 13, 13, 26, 20, 8, 28, 10, 10, 404018, 45.4, 54,
32.5, 15, 15, 666406, 53.7, 62.2, 39.6, 165, 69, 234, 722487,
52.7, 62.5, 36.7, 277, 78, 355, 936094, 55, 63.1, 40.2, 255,
57, 312, 255, 194, 449, 1062270, 0.8, 0.8, 0.7, 21098, 58, 250094,
271250, 1345546, 0.9, 0.9, 0.9, 229253, 229253, 1422179, 0.9,
0.9, 0.9, 232975, 11, 232986, 2115408, 1.3, 1.3, 1.3, 860435,
28, 860463, 929681, 27, 929606, 929708, 30624, 11.1, 10.2, 11.9,
32825, 11.6, 10.9, 12.3, 34475, 12.1, 11.3, 12.8, 1, 1, 1, 8,
9, 34869, 12.1, 11.3, 12.9, 8, 8, 5, 5, 1106982, 11.6, 11.4,
11.8, 725, 56, 12421, 13202, 1090378, 11.6, 11.4, 11.7, 589,
66, 7734, 8389, 1082905, 11.5, 11.3, 11.6, 1369, 257, 6302, 7928,
1067090, 11.3, 11.1, 11.5, 2828, 105, 6296, 9229, 12547, 780,
5626, 18953, 1248733, 11.8, 12, 11.7, 15282, 18913, 398, 34593,
1503806, 13.7, 13.5, 14, 17892, 18288, 696, 36876, 1783488, 15.8,
15.7, 15.9, 31115, 9396, 5267, 45778, 2005479, 17.3, 17.1, 17.5,
61193, 26110, 10933, 98236, 127831, 20368, 2044, 149053, 41438,
14.6, 14.8, 14.4, 624, 14, 638, 46390, 14.4, 14.6, 14.2, 134,
30, 2, 166, 54615, 15.1, 15.3, 15, 146, 146, 62043, 15.6, 15.8,
15.4, 28, 2174, 3430, 5632, 89, 2071, 3452, 5612, 248320, 3.1,
3.1, 3.1, 30294, 1695, 77, 32066, 309225, 3.4, 3.1, 3.6, 7139,
101, 47, 7287, 366284, 3.5, 3.3, 3.7, 488, 84, 572, 394276, 3.3,
3.1, 3.4, 1307, 451, 1758, 1771, 571, 2342, 18108, 27.3, 18547,
28.4, 19212, 30.2, 19739, 31.7, 40279, 6.2, 9.6, 2.4, 48420,
7.1, 10.9, 2.8, 51106, 7, 11.3, 2.2, 53612, 6.9, 11.1, 2.2, 107745,
1.2, 1.2, 1.1, 535, 3, 2, 540, 122846, 1.2, 1.3, 1.2, 695, 41,
3, 739, 143008, 1.3, 1.4, 1.3, 767, 8, 775, 164121, 1.4, 1.5,
1.3, 1061, 345, 5322, 6728, 1116, 27, 13531, 14674, 14399, 100,
20941, 100, 1, 1, 24571, 100, 26221, 100, 47287, 1.3, 1.2, 1.3,
10568, 215, 188735, 199518, 38945, 1.1, 1, 1.1, 7016, 153, 171790,
178959, 38597, 1.1, 1.1, 1.2, 6805, 11, 137035, 143851, 36042,
1.1, 1.1, 1.1, 5244, 444, 150480, 156168, 349, 134, 98015, 98473,
84661, 4.7, 5.6, 3.8, 3109, 47, 592, 3748, 94863, 4.8, 5.6, 4,
2986, 249, 111, 3346, 103053, 4.9, 5.7, 4, 2164, 248, 2412, 110268,
4.7, 5.5, 3.9, 892, 131, 7, 1030, 723, 89, 68, 880, 638582, 0.3,
0.4, 0.3, 3458, 195, 4093, 7746, 592640, 0.3, 0.3, 0.3, 4357,
872, 8, 5237, 710304, 0.3, 0.4, 0.3, 7762, 17902, 40338, 66002,
1079708, 0.5, 0.6, 0.5, 50485, 209333, 148024, 407842, 63641,
204029, 294919, 562589, 15016, 65, 17076, 61.4, 2, 2, 19535,
67, 1, 1, 1, 1, 22164, 73.3, 38, 38, 20, 20, 98441, 27, 29.6,
24.2, 100587, 25.9, 28.3, 23.3, 20992, 20992, 102733, 24.8, 27,
22.4, 20524, 20524, 111959, 25.6, 27.9, 23.1, 20863, 20863, 20863,
20863, 61074, 0.8, 0.7, 0.9, 4413, 805, 5218, 76287, 1, 0.9,
1.1, 5530, 1412, 6942, 123803, 1.7, 1.7, 1.7, 11046, 7840, 67,
18953, 184363, 2.7, 2.7, 2.6, 20688, 760, 12, 21460, 144921,
10132, 1129, 155135, 597658, 4.5, 4.3, 4.6, 511, 784, 7, 1302,
674438, 4.3, 4.1, 4.5, 531, 534, 9, 1074, 704676, 3.9, 3.7, 4.1,
34027, 180, 34207, 723989, 3.5, 3.3, 3.6, 19837, 33, 921471,
941341, 27044, 7525, 1902150, 1936719, 192774, 2.6, 2.6, 2.6,
20681, 19900, 12988, 53569, 247321, 2.9, 2.8, 2.9, 29365, 12062,
159338, 200765, 298299, 2.9, 2.9, 3, 54126, 2733, 80851, 137710,
344767, 2.9, 2.9, 2.9, 76887, 9080, 31172, 117139, 82196, 3662,
22255, 108113, 12700, 2.7, 2.9, 2.6, 1, 1, 14373, 2.9, 3, 2.9,
14924, 2.8, 2.9, 2.8, 115, 115, 15788, 2.8, 2.9, 2.8, 115, 115,
115, 115, 114096, 0.9, 0.9, 0.8, 127, 68, 207, 402, 82028, 0.6,
0.6, 0.5, 129, 51, 180, 73962, 0.5, 0.5, 0.4, 80, 33, 131, 244,
79341, 0.5, 0.5, 0.4, 27, 57444, 57471, 24, 12, 75000, 75036,
265503, 1.5, 1.7, 1.3, 52042, 6766, 7444, 66252, 291474, 1.4,
1.6, 1.3, 104275, 2383, 66, 106724, 508346, 2.2, 2.2, 2.2, 302293,
7835, 81693, 391821, 579209, 2.2, 2.2, 2.2, 414855, 9886, 1362138,
1786879, 475392, 8582, 935982, 1419956, 6078985, 18.9, 18.3,
19.5, 147171, 20552, 12, 167735, 6761226, 19.8, 19.1, 20.5, 165549,
51025, 7, 216581, 7428657, 20.6, 19.8, 21.4, 135888, 19951, 155839,
8049323, 21.3, 20.4, 22.2, 106047, 99520, 3790, 209357, 56596,
69903, 4323, 130289, 20679, 42, 24062, 42.5, 1, 4, 5, 26193,
42.4, 6, 1, 100, 107, 29242, 44.5, 40, 9, 57, 106, 59, 166, 165,
390, 96409, 2.4, 2.6, 2.2, 24569, 1960, 2167, 28696, 94685, 2.2,
2.3, 2, 21574, 1219, 192531, 215324, 81568, 1.8, 1.9, 1.7, 7906,
394, 508904, 517204, 88546, 1.8, 1.9, 1.7, 8664, 288, 734486,
743438, 10959, 367, 887852, 899178, 352130, 3.5, 3.2, 3.8, 275412,
68, 275480, 417034, 3.5, 3.1, 3.8, 347939, 110, 185000, 533049,
466968, 3.3, 3.1, 3.6, 420774, 2749, 50000, 473523, 547494, 3.3,
3, 3.6, 472110, 3905, 344537, 820552, 580295, 4766, 508124, 1093185,
276360, 1.7, 1.7, 1.8, 806, 107, 913, 375388, 2.2, 2.1, 2.3,
1621, 274, 1895, 639724, 3.6, 3.6, 3.5, 1798, 719, 2517, 1645015,
8.6, 8.8, 8.4, 2060, 8970, 456522, 467552, 2086, 10757, 500316,
513159, 678947, 0.1, 0.1, 0, 301041, 84, 1, 301126, 849861, 0.1,
0.1, 0.1, 300986, 122, 301108, 978046, 0.1, 0.1, 0.1, 301057,
564, 301621, 1039675, 0.1, 0.1, 0.1, 303396, 723, 304119, 331,
795, 1126, 2721235, 40.2, 36.4, 43.7, 1934, 1097, 3031, 2779950,
39.9, 35, 44.2, 154, 486, 3, 643, 2841113, 39.5, 33.6, 44.6,
151, 9940, 1, 10092, 140, 2315, 1, 2456, 93, 1, 94, 2962492,
39.5, 32.2, 45.7, 220, 220, 278, 278, 279308, 57.8, 56.8, 58.8,
318506, 59.2, 56.7, 61.5, 9, 1, 10, 376066, 62.5, 60.4, 64.3,
6, 6, 403490, 62.1, 60, 64.1, 2, 2, 106523, 0.2, 0.3, 0.2, 155,
41, 2000009, 2000205, 130309, 0.3, 0.3, 0.3, 212, 167, 3672065,
3672444, 159407, 0.3, 0.4, 0.3, 219, 56, 6520304, 6520579, 1905393,
3.7, 3.8, 3.7, 665, 14951, 9806596, 9822212, 1522, 26919, 9724432,
9752873, 13209, 2.2, 2, 2.3, 1, 1, 12618, 1.8, 1.7, 1.9, 12555,
1.6, 1.5, 1.7, 12496, 1.4, 1.4, 1.5, 19, 19, 318724, 8.8, 9.6,
8, 66075, 3486, 8079, 77640, 425173, 9.9, 10.9, 9, 133112, 5524,
59, 138695, 390142, 8, 8.8, 7.2, 61492, 3248, 1070, 65810, 387606,
7, 7.7, 6.4, 26708, 13698, 146247, 186653, 41039, 13712, 144662,
199413, 3277, 17.2, 3769, 20.5, 4168, 23.7, 4579, 26.1, 358398,
8.4, 8.2, 8.5, 11253, 223, 11476, 405779, 8.9, 8.6, 9.2, 19505,
375, 40, 19920, 411697, 8.5, 8.1, 8.8, 3475, 1819, 2613, 7907,
520729, 10.2, 10.4, 10.1, 8738, 90614, 22517, 121869, 11187,
204730, 20519, 236436, 2265090, 12.3, 13.4, 11.3, 41627, 2443,
71050, 115120, 2366537, 11.5, 12.6, 10.4, 26218, 256, 538068,
564542, 2470613, 10.6, 11.6, 9.6, 1972, 667, 724131, 726770,
2564857, 9.7, 10.7, 8.8, 2071, 244, 955415, 957730, 5605, 156,
946250, 952011, 579273, 13.2, 12.9, 13.6, 2927, 8, 7932, 10867,
573248, 13.2, 12.9, 13.6, 936, 81, 24463, 25480, 561093, 13.3,
12.8, 13.7, 710, 90, 16684, 17484, 528056, 12.9, 12.4, 13.3,
936, 263, 6884, 8083, 16415, 1077, 3933, 21408, 11693, 0.1, 0.1,
0.1, 706, 32, 738, 7373, 0.1, 0.1, 0.1, 411, 11, 1, 423, 4649,
0, 0, 0, 313, 12, 325, 3024, 0, 0, 0, 239, 27, 266, 81, 13, 7,
101, 34630, 23.2, 20.7, 25.3, 7, 2, 9, 37611, 23.5, 21.1, 25.6,
44, 41, 85, 57210, 34.9, 33.1, 36.4, 63, 321, 16691, 17075, 67,
318, 16692, 17077, 17000, 17000, 122849, 12, 10.3, 13.7, 701,
13067, 1, 13769, 188472, 16.9, 14.8, 19, 3394, 5396, 8790, 176693,
15.2, 13.3, 17.1, 5763, 2339, 6000, 14102, 190366, 15.8, 14.2,
17.3, 12981, 19638, 4000, 36619, 30277, 33391, 74, 63668, 322540,
3.1, 3.6, 2.7, 1802, 924, 2726, 398493, 3.8, 4.6, 3, 2449, 1065,
1, 3515, 416454, 3.9, 4.6, 3.3, 3137, 409, 1502, 5048, 540921,
5.1, 5.9, 4.2, 2130, 1364, 1810, 5304, 388274, 914, 2192, 390709,
40097, 0.2, 0.2, 0.2, 44010, 0.2, 0.2, 0.2, 48458, 0.2, 0.2,
0.2, 49549, 0.2, 0.2, 0.2, 623009, 1.1, 1.1, 1.2, 204341, 140,
47435, 251916, 589882, 0.9, 0.9, 0.9, 166336, 932, 2196591, 2363859,
810018, 1.1, 1, 1.1, 160271, 1124, 1839611, 2001006, 952871,
1.1, 1, 1.1, 525586, 2781, 5701305, 6229672, 515800, 2701, 5864144,
6382645, 440383, 8.1, 7.9, 8.3, 44374, 510, 573, 45457, 500772,
9, 8.8, 9.2, 17922, 3363, 3238, 24523, 595876, 10.5, 10.3, 10.6,
17785, 4566, 4984, 27335, 717574, 12.4, 12.3, 12.5, 37084, 1852,
8672, 47608, 63213, 2928, 11644, 74795, 92110, 11.8, 13, 10.5,
10456, 19, 7668, 18143, 102307, 12.2, 12, 12.4, 15104, 732, 7,
15843, 112351, 12.3, 12.2, 12.4, 14787, 2586, 17373, 119738,
12.1, 12.1, 12.1, 19869, 11197, 31066, 22123, 11441, 1301, 34865,
24349, 11183, 35532, 4744, 6.7, 8110, 11.4, 8093, 11.4, 8284,
11.5, 3, 1, 4, 375417, 4.1, 5, 3.3, 395479, 4.1, 4.9, 3.2, 599,
1759, 2358, 549289, 5.3, 6.9, 3.8, 609, 752, 133770, 135131,
603794, 5.6, 7.1, 4.1, 168, 605, 30333, 31106, 190, 1017, 115283,
116490, 189893, 1.4, 1.4, 1.3, 10063, 2489, 250001, 262553, 375253,
2.5, 2.6, 2.4, 121249, 49887, 171136, 387513, 2.4, 2.5, 2.3,
121535, 11583, 133118, 784787, 4.4, 4.6, 4.3, 105193, 27837,
365841, 498871, 58848, 11640, 494398, 564886, 285006, 0.4, 0.4,
0.3, 88946, 11005, 203, 100154, 310017, 0.4, 0.4, 0.3, 95056,
14303, 570, 109929, 353641, 0.4, 0.4, 0.3, 226344, 30019, 21,
256384, 543937, 0.5, 0.6, 0.5, 269312, 59524, 328836, 290241,
69238, 10, 359484, 36029, 0.6, 0.6, 0.6, 49, 1, 44, 94, 40342,
0.7, 0.7, 0.7, 38, 18, 56, 42059, 0.7, 0.7, 0.7, 48, 48, 42767,
0.7, 0.7, 0.7, 52, 47, 72710, 72809, 84, 54, 75813, 75951, 6588,
0.9, 0.9, 0.9, 8658, 0.9, 0.9, 0.9, 209611, 17.9, 25, 9.2, 230618,
16.4, 22.8, 8.5, 15905, 0.6, 0.6, 0.5, 4418, 1591, 31, 6040,
15813, 0.5, 0.5, 0.4, 4809, 137, 13, 4959, 15941, 0.5, 0.5, 0.4,
2944, 1, 22, 2967, 2293, 5, 6, 2304, 13934, 0.4, 0.4, 0.3, 199,
18, 217, 121, 5, 126, 233701, 17.2, 15, 19.2, 7, 8, 136000, 136015,
217890, 16.4, 14.1, 18.3, 39, 10, 100983, 101032, 194664, 14.8,
13, 16.4, 117, 117, 86522, 86756, 199277, 15, 13.8, 16.1, 296,
18, 74288, 74602, 28600, 174, 70604, 99368, 33392, 3.2, 3.6,
3, 760, 256, 1016, 32637, 3.1, 3.3, 2.8, 759, 759, 32352, 2.9,
3.1, 2.8, 539, 321, 4, 864, 32858, 2.8, 3, 2.7, 953, 1049, 2002,
1035, 774, 12, 1821, 514451, 0.7, 0.7, 0.6, 100817, 209, 4110,
105136, 568748, 0.6, 0.7, 0.6, 154295, 1028, 47, 155370, 1161642,
1.2, 1.2, 1.1, 702467, 2871, 348, 705686, 1085517, 0.9, 0.9,
1, 770755, 1853, 1746657, 2519265, 867799, 2247, 4500477, 5370523,
1166, 39.5, 1436, 49.5, 1571, 55.4, 1957, 56.2, 4583, 9.6, 5096,
10.7, 5485, 11.4, 6812, 13.9, 12434, 1.5, 1.6, 1.5, 13357, 1.6,
1.6, 1.5, 1, 6, 7, 13751, 1.6, 1.7, 1.5, 12, 8, 20, 14087, 1.6,
1.7, 1.5, 16, 5, 21, 13, 5, 18, 12, 12, 192169, 3.7, 3.7, 3.6,
11809, 849, 12658, 228481, 4.3, 4.4, 4.1, 8724, 2097, 3133, 13954,
314856, 5.7, 5.9, 5.6, 11798, 2622, 1928, 16348, 386052, 7, 7.3,
6.7, 23626, 6878, 2801, 33305, 53327, 5405, 3546, 61841, 6737600,
11, 11.2, 10.9, 137316, 41279, 946, 179541, 7309986, 11.6, 11.7,
11.6, 200687, 48576, 1171, 250434, 7878338, 12.2, 12.2, 12.3,
264972, 53827, 1290, 320089, 8524876, 13.1, 13.1, 13, 419603,
103771, 1531, 524905, 613272, 64034, 5387, 679060, 86468, 42.6,
42.5, 42.7, 96288, 41.3, 40, 42.7, 106108, 40.7, 39.1, 42.2,
119249, 39.9, 38.3, 41.5, 32286, 12.5, 13.9, 11, 31640, 11.9,
13.2, 10.5, 30058, 11, 12.4, 9.6, 30081, 10.7, 12.1, 9.3, 233824,
16.8, 19.4, 14.2, 8545, 4843, 291, 13679, 270829, 16.7, 19.3,
14, 9015, 4132, 84, 13231, 378686, 19.4, 24.6, 14.1, 1008, 1886,
2894, 957, 105, 3, 1065, 416651, 18.7, 23.7, 13.6, 475, 82, 557,
251, 53, 304, 181839, 11.8, 12.5, 11, 7330, 602, 42, 7974, 185837,
10.4, 11, 9.7, 8378, 74, 31, 8483, 192540, 9.2, 9.8, 8.7, 11773,
2, 11775, 8487, 301, 38, 8826, 215659, 8.9, 9.5, 8.4, 4399, 212,
4611, 4433, 1018, 5451, 71296, 1.7, 1.6, 1.8, 2497, 8, 236097,
238602, 73078, 1.8, 1.6, 1.9, 639, 44, 361547, 362230, 76685,
1.9, 1.7, 2.1, 1659, 587, 266060, 268306, 79368, 2, 1.8, 2.1,
1355, 1344, 288284, 290983, 24024, 1160, 291888, 317072, 9402447,
11.5, 11.7, 11.3, 700016, 71624, 12340, 783980, 9812263, 12.1,
12.2, 12, 594269, 51991, 24378, 670638, 10220418, 12.5, 12.5,
12.5, 250299, 311551, 11978, 573828, 15762457, 18.8, 19.1, 18.6,
1111344, 295205, 15320, 1421869, 2234932, 237691, 28941, 2487819,
309932, 1.4, 1.4, 1.4, 53537, 5496, 1212, 60245, 337766, 1.4,
1.4, 1.3, 13828, 749, 184, 14761, 414744, 1.5, 1.6, 1.4, 18476,
2855, 21331, 16409, 2048, 8871, 27328, 476412, 1.5, 1.6, 1.4,
12050, 1259, 13309, 6965, 1559, 8524, 9211, 27.7, 10369, 30.9,
11065, 32.8, 11190, 33.2, 1190707, 10.6, 10.6, 10.6, 2390, 8867,
3000, 14257, 1321149, 12.1, 12, 12.3, 1444, 55724, 260, 57428,
1242924, 11.7, 10.9, 12.4, 8231, 29157, 214, 37602, 1340456,
12.9, 12.6, 13.1, 91952, 80802, 4734, 177488, 147420, 22117,
8133, 173182, 6556, 11.5, 6091, 10.8, 6009, 10.7, 5899, 10.4,
6902, 6.6, 6.5, 6.7, 6980, 6.6, 6.5, 6.7, 3, 3, 7057, 6.4, 6.3,
6.5, 2, 3, 5, 7213, 6.4, 5.8, 7, 3, 3, 234, 234, 89065, 22.1,
21.7, 22.5, 94942, 23.4, 22.7, 24, 90956, 22.7, 20.9, 24.3, 90206,
22.5, 20.5, 24.3, 74743, 47.2, 47.8, 46.5, 75416, 47.3, 48, 46.5,
76089, 47, 47.9, 46.1, 80472, 47.7, 48.8, 46.6, 57214, 0.4, 0.4,
0.5, 391, 3, 394, 66386, 0.5, 0.4, 0.5, 138, 2, 140, 74852, 0.5,
0.4, 0.5, 202, 73, 275, 84311, 0.5, 0.5, 0.5, 467, 733, 27650,
28850, 611, 1472, 142230, 144313, 233419, 2.6, 2.6, 2.5, 63525,
3808, 29645, 96978, 178762, 1.8, 1.9, 1.6, 14113, 764, 117, 14994,
126657, 1.1, 1.4, 0.9, 8704, 293, 8997, 5105, 105, 1, 5211, 121437,
0.9, 1.1, 0.7, 5249, 3435, 8684, 4344, 53, 4397, 20902, 1.6,
1.6, 1.5, 7616, 166, 7782, 21391, 1.4, 1.4, 1.4, 7679, 330, 5,
8014, 22333, 1.3, 1.3, 1.3, 8684, 123, 8807, 17945, 0.9, 0.9,
0.9, 1605, 36, 1641, 29, 30, 59, 10868, 1.5, 1.6, 1.4, 8182,
1.1, 1.2, 1, 7, 7, 8661, 1.1, 1.2, 1, 11, 1, 12, 31169, 4, 3.7,
4.3, 26, 62, 23330, 23418, 23, 135, 19388, 19546, 16360, 0.2,
0.2, 0.2, 17182, 0.2, 0.2, 0.2, 4, 4, 18047, 0.2, 0.2, 0.1, 5,
5, 10, 4, 9, 2992, 3005, 18884, 0.2, 0.2, 0.1, 2, 6, 8, 5, 5,
798, 100, 783, 100, 790, 100, 809, 100, 27934, 0.4, 0.4, 0.4,
22, 50, 72, 27288, 0.3, 0.3, 0.3, 14, 1, 15, 38330, 0.4, 0.4,
0.4, 23, 19, 42, 39195, 0.4, 0.4, 0.4, 76, 110, 248972, 249158,
164, 111, 303792, 304067, 366787, 3.6, 3.6, 3.6, 8046, 684, 192,
8922, 436616, 4.4, 4.5, 4.3, 5414, 367, 62, 5843, 475508, 4.9,
5.1, 4.7, 4192, 24431, 128, 28751, 584567, 6.1, 6.6, 5.6, 5860,
66, 77, 6003, 31510, 20, 130, 31598, 25492, 8.6, 8.4, 8.9, 293,
29, 53, 375, 35091, 11, 10.9, 11, 83, 39, 113, 235, 39072, 11.8,
11.5, 12.2, 104, 225, 119, 448, 65424, 19.2, 20.8, 17.5, 924,
280, 48, 1252, 3290, 670, 68, 4008, 5936740, 0.5, 0.5, 0.5, 139283,
303, 2792, 142378, 5574018, 0.5, 0.4, 0.5, 184821, 3746, 5109,
193676, 5210847, 0.4, 0.4, 0.4, 200383, 5381, 205764, 4878704,
0.4, 0.3, 0.4, 229370, 11974, 241344, 233353, 16113, 20330, 249466,
289310, 0.1, 0.1, 0.1, 89, 58, 263, 410, 307487, 0.1, 0.1, 0.1,
811, 2071, 12, 2894, 338124, 0.1, 0.2, 0.1, 5277, 7911, 13188,
355505, 0.1, 0.2, 0.1, 10255, 3286, 13541, 9736, 3323, 1043,
13236, 2552206, 3.7, 3.9, 3.4, 974302, 140, 344914, 1319356,
2722397, 3.7, 4, 3.4, 1073366, 1775, 10168, 1085309, 2729939,
3.5, 3.7, 3.2, 979441, 42, 8, 979491, 2797235, 3.3, 3.6, 3.1,
979435, 33, 1, 979469, 840739, 34, 7322, 848095, 134863, 0.5,
0.6, 0.4, 50177, 1948, 1526104, 1578229, 120466, 0.4, 0.5, 0.3,
34655, 3073, 1758603, 1796331, 359352, 1, 1.2, 0.9, 288035, 7420,
4016205, 4311660, 365766, 0.9, 1, 0.8, 273581, 12885, 1550283,
1836749, 288204, 12945, 1243564, 1544713, 589046, 14.2, 15, 13.5,
7113, 2414, 4, 9531, 730542, 16, 15.9, 16.2, 9107, 5129, 1, 14237,
759256, 16.3, 16.3, 16.3, 6125, 4267, 100, 10492, 871256, 17.6,
17.7, 17.6, 8195, 7502, 99, 15796, 51647, 9774, 7, 61421, 41475,
51.7, 43447, 51.2, 42238, 50.7, 43040, 50.6, 1889503, 28.9, 26.9,
30.9, 609, 939, 1548, 1956190, 26.6, 24.6, 28.6, 25471, 5575,
9, 31055, 2011727, 25.2, 23.1, 27.3, 38500, 6591, 88, 45179,
1953575, 22.6, 20.6, 24.5, 2835, 36823, 16819, 56477, 1298, 25162,
47204, 73664, 3954790, 6.8, 6.4, 7.1, 20675, 940, 21615, 5787893,
9.8, 9.3, 10.2, 56397, 4076, 858, 61331, 5805328, 9.6, 9, 10.2,
93715, 48307, 606, 142628, 6386998, 10.6, 10.1, 11, 211457, 57121,
15726, 284304, 295506, 58908, 3000, 357409, 24284, 0.9, 0.9,
0.9, 23677, 0.8, 0.9, 0.8, 21, 21, 23165, 0.8, 0.8, 0.8, 15,
3, 18, 23629, 0.8, 0.8, 0.8, 33, 4, 67, 104, 31, 5, 67, 103,
2011555, 1.6, 1.5, 1.7, 1941, 533, 1770, 4244, 2134151, 1.7,
1.5, 1.8, 2586, 3047, 1397, 7030, 2232189, 1.7, 1.7, 1.8, 2419,
10705, 631, 13755, 2770996, 2.2, 2.2, 2.2, 1238, 28695, 696,
30629, 1508, 16709, 531, 18739, 2198740, 38.1, 37.6, 38.7, 965,
16570, 329, 17864, 2786853, 38.4, 38.3, 38.5, 450915, 2159, 107,
453181, 3166961, 34.2, 34, 34.4, 664102, 20693, 684795, 3457691,
33.9, 34, 33.8, 697248, 50079, 977, 748304, 715440, 46364, 1425,
763165, 3103027, 20.1, 19.9, 20.4, 7265, 65, 50598, 57928, 3334937,
20.5, 20.7, 20.4, 4406, 314, 7969, 12689, 3546060, 20.2, 20.7,
19.7, 662, 149, 7038, 7849, 3732073, 19.9, 20.3, 19.5, 510, 262,
7758, 8530, 350, 642, 7558, 8550, 773354, 2.1, 2.2, 2, 251271,
16460, 481, 268212, 954925, 2.3, 2.3, 2.3, 402905, 27966, 320083,
750954, 1126886, 2.4, 2.4, 2.3, 552272, 40341, 21231, 613844,
1050147, 2, 2, 1.9, 443338, 51583, 18500, 513421, 491662, 63500,
16779, 571941, 2487, 2.7, 2.9, 2.5, 2868, 2.8, 3, 2.6, 2919,
2.6, 2.8, 2.4, 3126, 2.6, 2.8, 2.4, 1333530, 58.7, 68.5, 44.6,
1523, 203, 101000, 102726, 1874812, 62.7, 75.9, 44.6, 184, 3275,
93000, 96459, 2866136, 74.7, 84.3, 61, 593, 1040, 93000, 94633,
3110159, 72.8, 78.9, 63.2, 713, 1048, 92016, 93777, 704, 1088,
92018, 93810, 309399, 6.1, 5.1, 7.1, 2598, 498, 100004, 103100,
232065, 4.3, 3.5, 5, 2458, 554, 301164, 304176, 204382, 3.4,
2.8, 4, 433, 168, 13678, 14279, 199011, 3.1, 2.5, 3.6, 349, 255,
33, 637, 304, 809, 482, 1595, 20371, 0.4, 0.4, 0.3, 32955, 0.5,
0.6, 0.4, 45538, 0.7, 0.9, 0.5, 48731, 0.7, 0.9, 0.5, 1, 1, 2,
376725, 16.7, 15, 18.2, 11, 9, 418638, 418658, 313786, 14.8,
12.8, 16.5, 68, 53, 326906, 327027, 265418, 13.3, 11.4, 14.9,
195, 171, 262802, 263168, 239422, 12.7, 11.2, 14, 627, 33, 216851,
217511, 35081, 170, 195354, 230605, 742243, 15.8, 16, 15.6, 1078,
1450, 451, 2979, 793191, 16, 16.4, 15.6, 8063, 1417, 40, 9520,
1916259, 29.3, 28, 30.7, 1172388, 10851, 5813, 1189052, 1712762,
25.1, 24.4, 25.8, 889708, 11525, 7531, 908764, 835714, 8675,
18437, 862826, 6290, 0.3, 0.4, 0.3, 6414, 0.3, 0.4, 0.3, 9152,
0.4, 0.5, 0.4, 44, 1, 45, 12060, 0.6, 0.6, 0.5, 225, 111, 336,
234, 278, 6, 518, 87217, 2.7, 3.2, 2.2, 10168, 29, 498604, 508801,
99165, 2.5, 2.9, 2.2, 24743, 28, 1855, 26626, 112111, 2.5, 2.9,
2.2, 38904, 18, 1486, 40408, 87947, 1.7, 2, 1.5, 8200, 31, 1,
8232, 3258, 1369, 4627, 625412, 10.8, 14.9, 6.4, 12166, 200,
35, 12401, 687192, 11.1, 15.5, 6.5, 7923, 3194, 37, 11154, 771146,
12, 16.9, 7, 27948, 8904, 434869, 471721, 826537, 12, 17.1, 6.8,
5170, 44290, 411453, 460913, 2705, 37184, 179047, 218936, 18898,
54.4, 150, 60, 210, 22342, 62.1, 92, 44, 6, 142, 23799, 63.5,
107, 75, 2, 184, 25877, 67.9, 136, 30, 166, 504, 58, 562, 201209,
6, 6.1, 6, 531, 55, 8709, 9295, 160772, 5.1, 4.8, 5.4, 803, 71,
3679, 4553, 136021, 4.6, 4.3, 5, 1055, 54, 3583, 4692, 145184,
5.3, 5.8, 4.9, 1872, 275, 2904, 5051, 49535, 381, 2720, 52599,
150618, 32.9, 33.2, 32.6, 1822, 74, 1896, 163142, 32.1, 32.3,
32, 3254, 697, 173, 4124, 248888, 43.9, 44.3, 43.5, 1192, 831,
81, 2104, 298062, 47.6, 47.9, 47.3, 2652, 1800, 83, 4535, 9868,
1795, 254, 11743, 26058, 0.1, 0.2, 0.1, 28905, 0.1, 0.2, 0.1,
1, 1, 32075, 0.1, 0.2, 0.1, 10, 9, 19, 35563, 0.1, 0.1, 0.1,
114, 195, 309, 185, 104, 12, 301, 221661, 1.8, 1.7, 1.8, 4240,
5331, 49, 9620, 217722, 1.5, 1.5, 1.5, 5740, 9362, 131, 15233,
197328, 1.2, 1.1, 1.2, 8963, 13669, 22632, 191362, 1, 1, 1, 14317,
33169, 243, 47729, 32216, 22584, 243, 55043, 1918504, 7.5, 8.6,
6.3, 33693, 10838, 61555, 106086, 2417395, 8.6, 10.1, 6.9, 81516,
11339, 120015, 212870, 3280681, 10.8, 12.8, 8.7, 97573, 54400,
120000, 271973, 3476560, 10.7, 13, 8.4, 129396, 49691, 9040,
188127, 135593, 51393, 165584, 247680, 45045, 14.1, 16.2, 11.8,
54659, 14.9, 21, 7.8, 64273, 14.1, 20.8, 4.3, 70079, 13, 17.9,
4.4, 258630, 2, 2.1, 2, 11233, 1833, 13066, 341078, 2.3, 2.3,
2.2, 13558, 1703, 15261, 420504, 2.4, 2.4, 2.4, 14970, 386, 132953,
148309, 485829, 2.4, 2.4, 2.4, 44814, 972, 277578, 323364, 52680,
816, 400127, 453623, 24560, 6.1, 5.9, 6.2, 1939, 149, 2088, 33008,
8, 8.3, 7.6, 6136, 1295, 7431, 52642, 12.1, 13.1, 11.2, 6095,
425, 6520, 114760, 26, 29.8, 22.1, 9091, 3735, 12826, 10568,
3262, 11, 13830, 2417, 4.4, 3089, 5.5, 3284, 5.7, 3298, 5.6,
57034, 14.4, 14, 14.7, 59575, 15.1, 14.4, 15.6, 69174, 18.3,
16.8, 19.5, 68624, 18.3, 16.9, 19.5, 58211, 1.9, 2.2, 1.7, 632,
92, 29500, 30224, 84920, 2.4, 2.8, 2.1, 26717, 241, 9, 26967,
166552, 4.1, 4.6, 3.6, 76851, 407, 77258, 182286, 3.9, 4.4, 3.4,
90404, 1395, 91799, 114074, 4592, 118666, 19647, 1.6, 1.5, 1.7,
24836, 2, 2.1, 1.9, 28585, 2.3, 2.5, 2, 28893, 2.3, 2.6, 2, 20,
7, 27, 10, 10, 63176, 35.5, 35.7, 35.2, 72757, 34.9, 33.8, 35.9,
81386, 33.9, 31.9, 35.8, 111540, 40.9, 38.5, 43.2, 712648, 0.7,
0.7, 0.7, 3229, 161, 3390, 969710, 0.8, 0.9, 0.8, 1395, 172,
6, 1573, 1013691, 0.8, 0.9, 0.8, 2158, 68, 2226, 1197624, 0.9,
1, 0.9, 34965, 78642, 91259, 204866, 84594, 180264, 233368, 498226,
2905, 2.7, 2.9, 2.6, 2806, 2.7, 2.9, 2.6, 2756, 2.5, 2.7, 2.4,
34, 34, 3, 1, 4, 4, 4, 2832, 2.5, 2.6, 2.3, 21312, 63, 21132,
59.3, 1, 1, 25983, 68.9, 33, 33, 26601, 67.8, 25, 25, 17, 17,
11477, 0.5, 0.6, 0.3, 2, 581, 583, 16062, 0.6, 0.9, 0.3, 12,
1, 260, 273, 19886, 0.7, 0.9, 0.4, 11, 5, 16, 32, 21345, 0.7,
0.9, 0.4, 6, 6, 27, 39, 5, 5, 22, 32, 78512, 12.6, 10.3, 14.8,
16364, 5, 1886, 18255, 71719, 11.4, 9.1, 13.7, 6203, 7, 13602,
19812, 70999, 11.3, 9, 13.5, 196, 210, 12393, 12799, 9236, 121,
3070, 12427, 1244, 25.7, 1291, 26.4, 14, 14, 1351, 27.2, 1379,
27.6, 56222, 0.2, 0.2, 0.2, 219, 1843, 4, 2066, 71189, 0.2, 0.2,
0.2, 792, 280, 1072, 92424, 0.3, 0.3, 0.3, 2144, 2216, 4360,
102358, 0.3, 0.3, 0.3, 7400, 3631, 11031, 7579, 11095, 18674,
268694, 1.3, 1.3, 1.3, 1954, 4015, 40, 6009, 306471, 1.3, 1.3,
1.3, 4077, 5914, 1, 9992, 321794, 1.2, 1.2, 1.2, 4552, 14257,
7, 18816, 338850, 1.1, 1.1, 1.1, 4741, 21570, 305845, 332156,
4793, 23901, 872681, 901375, 83025, 0.2, 0.2, 0.2, 236495, 236495,
76414, 0.2, 0.2, 0.1, 859403, 859403, 73309, 0.1, 0.2, 0.1, 1466501,
1466501, 1, 1392096, 1392097, 76446, 0.1, 0.2, 0.1, 800378, 800378,
1824419, 1671160, 107347, 5.5, 6.2, 5, 5307, 1073, 2752, 9132,
103826, 4.9, 5.4, 4.4, 7254, 1421, 93, 8768, 101618, 4.4, 4.9,
3.9, 1659, 1100, 1684, 4443, 109391, 4.3, 4.8, 3.8, 3304, 2212,
9, 5525, 4044, 2782, 66, 6892, 2253, 22.9, 906, 9.1, 1833, 17.7,
506, 290, 796, 2201, 20.3, 1060, 90, 1150, 956, 98, 146, 1060,
680729, 2.6, 1.8, 3.4, 126436, 1272, 410929, 538637, 581889,
2.2, 1.4, 2.8, 89808, 938, 800571, 891317, 509471, 1.9, 1.3,
2.4, 36287, 57, 409, 36753, 487564, 1.7, 1.1, 2.2, 19532, 69,
534, 20135, 19573, 156, 1038, 20282, 1736127, 10.6, 10.4, 10.8,
118189, 14664, 6872, 139725, 1832510, 11, 10.6, 11.3, 74961,
13053, 2095, 90109, 1996318, 11.8, 11.3, 12.3, 82494, 8097, 1951,
92542, 2358333, 13.8, 13.3, 14.2, 92740, 13348, 1951, 108039,
198407, 21070, 4570, 221428, 55405, 23.4, 25.1, 21.8, 61158,
24.1, 25.7, 22.5, 68881, 25.4, 26.5, 24.3, 73141, 25.6, 26.7,
24.5, 839952, 20.3, 20.1, 20.5, 5307, 396, 6, 5709, 947443, 21.7,
21.4, 22, 2307, 216, 1, 2524, 1039736, 22.5, 22.2, 22.9, 1349,
251, 1600, 1381724, 28.7, 28.2, 29.1, 1769, 569, 2338, 1798,
583, 5, 2381, 34919, 0.6, 0.7, 0.6, 227, 1, 228, 37345, 0.6,
0.7, 0.6, 64, 12, 76, 40261, 0.6, 0.7, 0.6, 361, 25, 5, 391,
42167, 0.6, 0.7, 0.6, 327, 131, 549, 1007, 311, 126, 603, 1040,
124509, 0.9, 0.9, 1, 301, 48, 37, 386, 126482, 0.8, 0.7, 0.8,
314, 18, 5, 337, 252998, 1.3, 1.2, 1.3, 82064, 122, 120000, 202186,
348056, 1.4, 1.3, 1.5, 225746, 3870, 312248, 541864, 251472,
40349, 303213, 595034, 969714, 0.7, 0.8, 0.6, 9019, 420, 3290,
12729, 990494, 0.6, 0.7, 0.5, 8747, 1815, 34, 10596, 1199115,
0.7, 0.7, 0.6, 1279, 909, 1508017, 1510205, 1308568, 0.6, 0.7,
0.6, 60845, 1165, 2627523, 2689533, 82773, 1529, 3132506, 3216808,
522, 30.9, 589, 36.3, 588, 36.5, 588, 36.3, 127667, 6.2, 5.2,
7.2, 1274, 723, 2451, 4448, 129701, 6.3, 5.2, 7.3, 1398, 161,
1731, 3290, 130730, 6.3, 5.2, 7.3, 828, 43, 717, 1588, 131311,
6.3, 5.3, 7.4, 308, 61, 17115, 17484, 1430, 15, 578, 2023, 37542,
66.4, 24168, 44.8, 21648, 38.8, 21843, 38, 361144, 7.8, 7.7,
7.9, 43034, 1143, 44177, 524601, 10.7, 10.9, 10.5, 40260, 12473,
3150, 55883, 746375, 14.4, 14.9, 13.8, 47043, 5885, 1997, 54925,
852238, 15.7, 16, 15.4, 51586, 1177, 2272, 55035, 63839, 4075,
3901, 69505, 666164, 26.5, 37.2, 12.7, 7, 4, 11, 816234, 26.8,
35.9, 13, 78, 13, 91, 1856226, 43.5, 55.8, 20.5, 122, 268, 390,
2372836, 46.5, 58.9, 22.4, 308, 256, 564, 295, 493, 788, 3174558,
2, 2.1, 1.9, 1084694, 3426, 461123, 1549243, 3943681, 2.2, 2.2,
2.1, 1900621, 2095, 2248308, 4151024, 3506520, 1.8, 1.8, 1.7,
1540854, 6103, 1893008, 3439965, 3276580, 1.5, 1.6, 1.4, 1425483,
9713, 100752, 1535948, 1539554, 24729, 126694, 1690929, 6043,
30.5, 5490, 30.6, 4937, 27.9, 1, 1, 1, 1, 5, 5, 5088, 28.1, 109461,
3.3, 3.3, 3.3, 1730, 433, 10273, 12436, 157788, 4.3, 4.4, 4.2,
17073, 479, 6, 17558, 184710, 4.7, 4.8, 4.5, 17303, 2038, 2,
19343, 313165, 7.3, 7.7, 6.8, 2552, 15243, 117465, 135260, 2568,
11253, 142031, 155852, 29971, 0.5, 0.5, 0.4, 9999, 4, 135, 10138,
30425, 0.4, 0.5, 0.3, 9698, 1, 9699, 30940, 0.4, 0.5, 0.3, 9510,
400, 9910, 31068, 0.3, 0.4, 0.3, 9696, 129, 9825, 11671, 447,
24015, 36118, 168243, 2.9, 3, 2.8, 50, 8, 58, 160299, 2.6, 2.6,
2.5, 107, 8, 115, 156462, 2.3, 2.4, 2.3, 161, 39, 200, 169567,
2.4, 2.4, 2.3, 1016, 1514, 3349, 5879, 4473, 1594, 1415, 7482,
77877, 0.3, 0.3, 0.3, 848, 336, 1, 1185, 104706, 0.4, 0.4, 0.3,
1146, 264, 1, 1411, 154774, 0.5, 0.6, 0.4, 1407, 366, 1773, 1224519,
3.7, 3.9, 3.5, 2935, 500678, 607140, 1110753, 5956, 536965, 954791,
1497712, 257468, 0.3, 0.3, 0.3, 96, 42, 775, 913, 208599, 0.2,
0.2, 0.2, 243, 73, 139577, 139893, 211862, 0.2, 0.2, 0.2, 254,
163, 385746, 386163, 225525, 0.2, 0.2, 0.2, 728, 338, 375464,
376530, 817, 678, 305765, 307255, 722509, 1.9, 1.6, 2.1, 4604,
1627, 75, 6306, 642417, 1.7, 1.4, 1.9, 15555, 2126, 763, 18444,
611855, 1.6, 1.4, 1.8, 15741, 2470, 10825, 29036, 817254, 2.2,
2.1, 2.2, 12792, 3316, 1328, 17436, 1210582, 3507, 1435, 1215417,
771184, 7.3, 7.4, 7.3, 363, 363, 762825, 7.2, 7.3, 7.1, 384,
72, 31, 487, 864814, 8.3, 8.1, 8.5, 699, 641, 14, 1354, 1001963,
9.8, 9.9, 9.7, 2353, 479, 14, 2846, 48670, 2858, 79, 51552, 352144,
9.7, 9.6, 9.8, 304969, 8.5, 8.3, 8.7, 280494, 8.3, 8.1, 8.5,
247132, 8.6, 8.5, 8.8, 646026, 74.6, 85.3, 52.6, 46, 28, 74,
1456413, 78.5, 85, 57.2, 51, 16, 1200, 1267, 1687640, 65.8, 72.6,
44.1, 133, 100, 1200, 1433, 2226192, 77.3, 85.1, 53.6, 203, 100,
1200, 1503, 197, 311, 1200, 1708, 486065, 1, 1.2, 0.8, 69, 519,
588, 919987, 1.9, 2.1, 1.6, 358, 712, 179, 1249, 1370905, 2.7,
3, 2.4, 1313, 5102, 200, 6615, 1728182, 3.4, 3.7, 3, 3356, 25370,
197, 28923, 3559, 12146, 202, 15902, 171122, 4.1, 3.4, 4.8, 84,
148, 1543, 1775, 129488, 3.2, 2.7, 3.6, 148, 81, 2032, 2261,
106374, 2.6, 2.2, 3, 389, 164, 6233, 6786, 104438, 2.6, 2.2,
2.9, 431, 80, 3433, 3944, 79477, 8117, 1701, 89295, 115076, 14.5,
15.2, 13.9, 123029, 14.8, 15.6, 14.1, 127209, 14.7, 15.4, 14.1,
131769, 14.7, 15.4, 14.1, 145162, 0.7, 0.7, 0.7, 2056, 264, 400,
2720, 177211, 0.9, 0.9, 0.9, 1021, 388, 321, 1730, 281048, 1.4,
1.5, 1.3, 2426, 138, 294, 2858, 705310, 3.7, 4.1, 3.2, 3655,
453, 186, 4294, 88137, 875, 467, 89182, 11667588, 8.1, 8.7, 7.6,
1523, 292, 481282, 483097, 11194710, 7.8, 8.3, 7.4, 4922, 1463,
126170, 132555, 11643276, 8, 8.5, 7.6, 315313, 2423, 113474,
431210, 11636911, 8, 8.4, 7.6, 28909, 661, 63966, 93536, 1458388,
4662, 52150, 1515172, 423187, 4.8, 4.9, 4.6, 45206, 4301, 14849,
64356, 426901, 4.3, 4.3, 4.2, 55398, 290, 2, 55690, 514647, 4.5,
4.6, 4.5, 132743, 253, 2557, 135553, 513907, 4, 4.1, 3.9, 144194,
338, 5969, 150501, 121874, 356, 16405, 138635, 163, 3, 248, 4.8,
377, 6.4, 437, 7.2, 6682, 14.3, 7245, 14.8, 7443, 14.5, 1, 1,
7725, 14.5, 4, 4, 60, 60, 9839, 6, 6, 6, 9050, 5.2, 5.1, 5.3,
6, 1, 7, 8673, 4.8, 4.7, 4.9, 2, 2, 60, 64, 8338, 4.5, 4.4, 4.6,
2, 1, 3, 1147, 18.8, 1017, 16, 986, 16.5, 998, 17.2, 4436, 4.1,
4, 4.2, 4569, 4.2, 4.2, 4.3, 4637, 4.2, 4.2, 4.3, 4738, 4.3,
4.3, 4.2, 38, 38, 5, 5, 5746, 3.2, 3.2, 3.2, 5122, 2.8, 2.7,
2.8, 4255, 2.2, 2.2, 2.3, 3, 3, 4021, 2, 2, 2.1, 1, 1, 4218,
14.4, 4880, 15.6, 5195, 15.6, 5543, 16.3, 3433, 2.2, 2.2, 2.1,
2700, 1.5, 1.5, 1.5, 2394, 1.2, 1.2, 1.2, 2139, 1, 1, 1, 6501819,
27.3, 33.7, 19.3, 240701, 212, 70084, 310997, 8429956, 30.7,
38.5, 20.8, 582, 87, 70000, 70669, 10771366, 34, 41.4, 24.2,
211, 93, 70000, 70304, 13454842, 38.6, 45.9, 28.7, 331, 2604,
70000, 72935, 335, 13483, 70000, 83818, 238298, 2.1, 2.3, 2,
20712, 2629, 12, 23353, 256092, 2, 2.2, 1.8, 20672, 2177, 1401,
24250, 266496, 1.8, 2, 1.7, 14304, 2956, 17260, 274929, 1.6,
1.8, 1.5, 14345, 1862, 16207, 14505, 2005, 5, 16515, 11779, 267,
12046, 854848, 9.3, 8.5, 10.1, 148264, 33, 338641, 486938, 826275,
9.2, 8.3, 10.1, 73608, 209, 238810, 312627, 807441, 9.1, 8.2,
10, 35309, 464, 223949, 259722, 823011, 9.4, 8.5, 10.3, 26084,
237, 221053, 247374, 26417, 282, 219257, 245946, 8997, 10.1,
13.1, 7.2, 11420, 12.5, 16.6, 8.2, 12791, 13.5, 18.3, 8.3, 1,
1, 13050, 13.3, 18.1, 8.2, 146227, 2.6, 2.7, 2.4, 59965, 177,
6202, 66344, 79265, 1.2, 1.4, 1.1, 8363, 210, 38, 8611, 58830,
0.8, 0.9, 0.7, 1371, 16, 1387, 693, 1, 694, 53746, 0.7, 0.8,
0.6, 371, 1, 372, 10, 10, 1710594, 40.1, 35.2, 45.1, 3, 1, 4,
2164794, 42.2, 35.8, 49.2, 7, 7, 2483405, 44.4, 37.5, 52, 1,
1, 2523648, 43.1, 36.3, 50.6, 2, 1304, 1306, 1109, 1109, 13099,
39.2, 26203, 76.7, 1, 3, 4, 27295, 68.3, 3, 5, 8, 28845, 67.3,
8, 2, 1, 11, 92, 92, 130491, 2.4, 2.2, 2.6, 368, 2707, 3075,
146319, 2.7, 2.6, 2.9, 461, 267, 911, 1639, 177624, 3.3, 3.4,
3.2, 799, 61, 1671, 2531, 197161, 3.6, 3.8, 3.4, 991, 41, 1523,
2555, 84885, 50, 2940, 87866, 217218, 10.9, 12, 9.9, 251, 185,
715, 1151, 253786, 12.4, 14.3, 10.5, 314, 121, 4119, 4554, 237616,
11.5, 13.1, 9.9, 283, 43, 4, 330, 277964, 13.4, 15.7, 11, 818,
469, 1, 1288, 833, 254, 57, 1144, 7570, 990, 8560, 3271, 0.7,
0.8, 0.6, 2760, 0.5, 0.6, 0.5, 2585, 0.4, 0.5, 0.4, 3, 3, 3,
3, 4, 4, 2520, 0.4, 0.4, 0.3, 20768, 0.2, 0.2, 0.2, 493, 98,
4e+05, 400591, 48106, 0.4, 0.4, 0.4, 1937, 24111, 1463780, 1489828,
40990, 0.3, 0.3, 0.3, 3582, 9320, 1152073, 1164975, 58590, 0.4,
0.4, 0.3, 14732, 15263, 2671806, 2701801, 15118, 18175, 2968986,
3002279, 1351031, 2.8, 3.3, 2.3, 29714, 140095, 100, 169909,
2114801, 4.1, 4.8, 3.4, 57899, 171702, 134, 229735, 3231728,
5.8, 6.5, 5.2, 114512, 798080, 912592, 2860495, 4.8, 5.6, 4.1,
78398, 188296, 266694, 75030, 165047, 240077, 230732, 2.4, 2.5,
2.3, 844112, 7.9, 8, 7.7, 265887, 632, 1792014, 2058533, 882252,
7.9, 7.9, 7.8, 302137, 3787, 1785030, 2090954, 337120, 4256,
2326305, 2667681, 4107226, 9.3, 9.9, 8.8, 5374, 27, 5401, 6280062,
13.4, 14, 12.8, 3820, 2712, 31, 6563, 5891208, 12.6, 12.6, 12.7,
5798, 11020, 440, 17258, 6842202, 14.6, 14.2, 15, 81222, 117975,
4885, 204082, 263803, 124030, 12962, 394306, 39526, 0.2, 0.2,
0.2, 106, 121, 351884, 352111, 38959, 0.2, 0.2, 0.2, 223, 138,
434903, 435264, 39706, 0.2, 0.2, 0.2, 848, 461, 50499, 51808,
40254, 0.2, 0.2, 0.2, 980, 285, 25320, 26585, 736, 169, 9017,
9887, 274520, 7.7, 6.9, 8.5, 273840, 6.8, 6.1, 7.5, 273163, 6,
5.4, 6.7, 3, 3, 272784, 5.3, 4.8, 5.9, 546419, 1.8, 1.8, 1.7,
147256, 4425, 878067, 1029748, 618709, 1.8, 1.8, 1.8, 178308,
6046, 1767167, 1951521, 620523, 1.6, 1.6, 1.6, 356191, 11448,
2400270, 2767909, 1379147, 3.1, 3.1, 3.2, 1058771, 15290, 1889519,
2963580, 1112303, 28738, 3040300, 4181341, 33662, 6.7, 7.3, 6.2,
39713, 7.5, 8.1, 6.9, 1, 7, 8, 43127, 7.7, 8.4, 7, 1, 1, 47,
70, 2, 119, 47801, 8.1, 8.9, 7.4, 54, 1854, 1908, 30, 2456, 2486,
1125790, 12.5, 12, 12.9, 74915, 15702, 5785, 96402, 1337214,
14.2, 13.9, 14.6, 82629, 18635, 9545, 110809, 1602522, 16.4,
16.1, 16.7, 142207, 56135, 27167, 225509, 2003908, 19.8, 19.9,
19.8, 251076, 22916, 30305, 304297, 276381, 14131, 46515, 315123,
1805437, 24.4, 25.5, 23.4, 48030, 14428, 990, 63448, 2075182,
26.6, 26.1, 27, 48813, 12916, 127, 61856, 2258196, 27.2, 26.9,
27.6, 69390, 17085, 76, 86551, 2491249, 28.8, 28.5, 29.1, 115204,
7719, 122923, 112835, 8122, 998, 121064, 882398, 4.8, 4.8, 4.8,
26089, 1898, 300001, 327988, 1783595, 8.3, 8.4, 8.2, 1005472,
2446, 300194, 1308112, 835716, 4.6, 4.7, 4.6, 149200, 4839, 7792500,
7946539, 868711, 5, 4.9, 5, 15321, 8767, 6943081, 6967169, 14115,
7662, 7048873, 7070650, 280466, 4.1, 3.6, 4.7, 1018, 22, 25,
1065, 279808, 3.7, 3.2, 4.2, 3131, 1656, 2338, 7125, 275101,
3.3, 2.8, 3.7, 1782, 79, 10082, 11943, 276031, 2.9, 2.5, 3.3,
5208, 623, 6017, 11848, 9629, 1638, 4898, 16165, 2195610, 3.4,
3.4, 3.3, 117053, 32163, 136, 149352, 3234381, 4.8, 4.9, 4.7,
96675, 10250, 542505, 649430, 3470220, 5.1, 5.2, 4.9, 110372,
8166, 506718, 625256, 3632496, 5.2, 5.4, 5.1, 97706, 846, 474996,
573548, 96309, 680, 567114, 663889, 11286, 1.1, 1.1, 1.2, 3,
10, 13, 11540, 1.1, 1.1, 1.1, 1, 4, 5, 8520, 0.7, 0.9, 0.6, 5,
5, 2, 2, 8399, 0.6, 0.8, 0.5, 204219, 3.6, 3.7, 3.6, 9287, 420,
9012, 18719, 255564, 4, 4.1, 3.9, 14051, 151, 5, 14207, 277384,
3.8, 3.8, 3.7, 21877, 687, 22564, 12333, 677, 15, 13025, 279936,
3.4, 3.4, 3.3, 12015, 675, 12690, 10544, 661, 11205, 1003, 82.7,
1128, 99.9, 1185, 95, 1238, 91.7, 4301, 4.3, 4.6, 3.9, 4607,
4.4, 4.8, 4.1, 3, 3, 3954, 3.9, 4.3, 3.6, 3742, 3.5, 3.9, 3.2,
1, 1, 44812, 3.5, 3.2, 3.7, 48226, 3.6, 3.5, 3.7, 29, 102, 131,
50021, 3.7, 3.6, 3.7, 121, 59, 180, 78849, 5.6, 5.7, 5.6, 2646,
15879, 8358, 26883, 3477, 18494, 9648, 31619, 35040, 0.3, 0.4,
0.3, 87, 26, 113, 43172, 0.4, 0.4, 0.4, 89, 23, 3, 115, 56532,
0.5, 0.5, 0.5, 824, 156, 3, 983, 60145, 0.5, 0.5, 0.5, 2184,
2508, 42, 4734, 3322, 6178, 45, 9545, 1324108, 2, 1.9, 2, 2399,
4872, 1434, 8705, 1373749, 1.9, 1.8, 2, 10032, 6715, 1086, 17833,
4346197, 5.5, 6.2, 4.9, 1838848, 145335, 1086, 1985269, 6052652,
7.2, 7.5, 6.9, 3577477, 328257, 1, 3905735, 3673808, 294078,
5, 3967891, 213053, 4.5, 4.3, 4.6, 11963, 2, 45, 12010, 197979,
3.9, 3.6, 4.2, 62, 20000, 20062, 196376, 3.5, 3.3, 3.7, 27, 7144,
7171, 194920, 3.2, 3.1, 3.3, 21, 3790, 3811, 14, 4463, 4477,
13115, 46.5, 17216, 52.7, 22723, 63.2, 4, 4, 8, 25748, 66.5,
4, 3, 7, 8, 5, 13, 7, 7, 209, 2.1, 220, 2.1, 230, 2.1, 239, 2,
593308, 2.1, 2.1, 2.1, 257256, 1809, 1636, 260701, 492930, 1.5,
1.5, 1.5, 135801, 20804, 437775, 594380, 851175, 2.2, 2.2, 2.2,
428397, 38068, 180000, 646465, 1720313, 3.8, 3.7, 3.8, 1396780,
28260, 2351314, 3776354, 1489559, 39713, 67000, 1596272, 5050302,
10.8, 10, 11.5, 2346, 1618, 72896, 76860, 4818767, 10.5, 9.8,
11.1, 3022, 2981, 40357, 46360, 4915142, 10.9, 10.2, 11.6, 3232,
6169, 1417179, 1426580, 4997387, 11.4, 10.6, 12.1, 2218, 2271,
2449642, 2454131, 2345, 1325, 6311459, 6315119, 3281115, 71.5,
74, 65.7, 104, 79, 183, 7316697, 85.6, 85.4, 86, 538, 86, 624,
7995126, 86.3, 90.3, 76.8, 424, 378, 802, 8716332, 88.1, 93.9,
75.2, 1288, 7231, 135, 8654, 1405, 7152, 123, 8680, 5926156,
9.8, 9.5, 10.1, 303181, 12500, 909, 316590, 7119664, 11.2, 11.1,
11.4, 238150, 14880, 229, 253259, 8406996, 12.8, 12.4, 13.1,
117234, 37829, 16, 155079, 9359587, 13.8, 13.3, 14.3, 134936,
56476, 184, 191596, 231597, 127421, 5776, 359311, 771153, 2,
2.5, 1.5, 548824, 307, 81519, 630650, 309847, 0.7, 0.7, 0.7,
109286, 1247, 163269, 273802, 384567, 0.7, 0.7, 0.8, 159014,
1150, 168019, 328183, 426017, 0.7, 0.7, 0.7, 239744, 29599, 23866,
293209, 208272, 28294, 12046, 248612, 39258293, 13.3, 13.5, 13.1,
379340, 169743, 76, 44183643, 14.3, 14.2, 14.4, 264569, 6285,
89, 48178877, 15, 14.8, 15.3, 267222, 224508, 491730, 50632836,
15.3, 14.9, 15.6, 348360, 925659, 1274019, 347851, 1439653, 47,
1787504, 56647, 52.5, 51.3, 53.7, 56684, 53.4, 52.6, 54.2, 56721,
54, 53.4, 54.6, 56753, 54.3, 53.9, 54.7, 82317, 2.5, 2.4, 2.6,
121, 9, 130, 76303, 2.3, 2.1, 2.4, 189, 40, 229, 78799, 2.3,
2.2, 2.4, 289, 68, 357, 108267, 3.1, 3, 3.2, 563, 12391, 14238,
27192, 983, 13108, 18767, 32853, 1329932, 5, 4.5, 5.6, 43950,
587, 5, 44542, 1220149, 4.3, 3.9, 4.6, 311, 2, 313, 1170873,
3.8, 3.5, 4, 118, 86703, 86821, 1162007, 3.5, 3.3, 3.7, 14, 92808,
92822, 13031, 31829, 44860, 2800, 1.3, 1.3, 1.4, 2991, 1.3, 1.2,
1.3, 4, 4, 3186, 1.2, 1.2, 1.2, 1, 1, 3257, 1.1, 1, 1.1, 5, 5,
1076474, 4.1, 4.1, 4.1, 408, 5912, 200001, 206321, 1347347, 4.7,
4.8, 4.7, 201547, 15859, 217406, 1404448, 4.7, 4.7, 4.6, 174191,
704, 174895, 1324193, 4.7, 4.7, 4.6, 67836, 6, 359493, 427335,
39345, 1045, 3206577, 3246967, 51768, 0.1, 0.1, 0, 2357, 15000,
17357, 61756, 0.1, 0.1, 0.1, 1928, 10200, 12128, 72793, 0.1,
0.1, 0.1, 11000, 11000, 76767, 0.1, 0.1, 0.1, 1, 30581, 30582,
35475, 35475, 2191, 14.7, 2111, 16.6, 2050, 16.7, 2040, 18.1,
3891, 0.9, 1, 0.8, 4493, 0.9, 1, 0.8, 5179, 1, 1.1, 0.8, 5424,
0.9, 1, 0.8, 171871, 0.9, 1, 0.7, 81937, 798, 48, 82783, 288394,
1.2, 1.3, 1.2, 190092, 2557, 315929, 508578, 379882, 1.4, 1.5,
1.4, 263047, 9902, 1267590, 1540539, 387113, 1.3, 1.5, 1.1, 272112,
11377, 3726533, 4010022, 83516, 13802, 4288761, 4386079, 252895,
2.1, 2.2, 2.1, 155718, 146, 29833, 185697, 149962, 1.1, 1.1,
1.1, 47857, 325, 9687, 57869, 132107, 0.8, 0.8, 0.8, 25737, 2606,
23415, 51758, 187955, 1, 1.1, 1, 61137, 4448, 23427, 89012, 75508,
6392, 23964, 105864, 402226, 3.3, 4, 2.7, 13850, 118, 7, 13975,
398307, 3.1, 3.8, 2.6, 4435, 416, 4851, 400482, 2.9, 3.4, 2.4,
6085, 123, 301883, 308091, 416141, 2.8, 3.3, 2.3, 9118, 11766,
271263, 292147, 9939, 11840, 904, 22683), Footnotes = c("Including refugees.",
"Including refugees.", "Including refugees.", "Including refugees.",
NA, NA, NA, NA, "Including refugees.", "Including refugees.",
"Including refugees.", "Including refugees.", NA, NA, NA, NA,
"Including refugees.", "Including refugees.", "Including refugees.",
"Including refugees.", NA, NA, NA, NA, "Including refugees.",
"Including refugees.", "Including refugees.", "Including refugees.",
NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, "Data as at the end of December.",
"Data as at the end of December.", "Data as at the end of December.",
"Data as at the end of December.", NA, NA, NA, NA, "Data as at the end of December.",
"Data as at the end of December.", "Data as at the end of December.",
NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA,
NA, NA, "UNHCR estimates the number of people with undetermined nationality (at risk of statelessness) from various sources.",
"UNHCR estimates the number of people with undetermined nationality (at risk of statelessness) from various sources.",
"Including refugees.", "Including refugees.", "Including refugees.",
"Including refugees.", "Data as at the end of December.", "Data as at the end of December.",
"Data as at the end of December.", "Including refugees.", "Including refugees.",
"Including refugees.", "Including refugees.", "Data as at the end of December.",
"Data as at the end of December.", "Data as at the end of December.",
"Including refugees.", "Including refugees.", "Including refugees.",
"Including refugees.", "According to the Government of Algeria, there are an estimated 165,000 Sahrawi refugees in the Tindouf camps.",
NA, NA, "Including refugees.", "Including refugees.", "Including refugees.",
"Including refugees.", "The Government estimates 165,000 Sahrawi refugees. Persons in need of humanitarian assistance services is estimated to be higher.",
NA, NA, "The Government estimates 165,000 Sahrawi refugees. Persons in need of humanitarian assistance services is estimated to be higher.",
"The Government estimates 165,000 Sahrawi refugees. Persons in need of humanitarian assistance services is estimated to be higher.",
"The Government estimates 165,000 Sahrawi refugees. Persons in need of humanitarian assistance services is estimated to be higher.",
NA, NA, NA, NA, NA, NA, NA, NA, "Refers to foreign citizens.",
"Refers to foreign citizens.", "Refers to foreign citizens.",
"Refers to foreign citizens.", "Refers to foreign citizens.",
"Refers to foreign citizens.", "Refers to foreign citizens.",
"Refers to foreign citizens.", "Including refugees.", "Including refugees.",
"Including refugees.", "Including refugees.", "Data as at the end of December.",
"Data as at the end of December.", "Data as at the end of December.",
"Data as at the end of December.", "Including refugees.", "Including refugees.",
"Including refugees.", "Including refugees.", "Data as at the end of December.",
"Data as at the end of December.", "Data as at the end of December.",
"Including refugees.", "Including refugees.", "Including refugees.",
"Including refugees.", "Data as at the end of December.", "Data as at the end of December.",
NA, "Data as at the end of December.", "Including refugees.",
"Including refugees.", "Including refugees.", "Including refugees.",
NA, NA, NA, NA, NA, NA, NA, NA, "Including refugees.", "Including refugees.",
"Including refugees.", "Including refugees.", "Including refugees.",
"Including refugees.", NA, NA, "Including refugees.", "Including refugees.",
"Including Venezuelans displaced abroad.", NA, NA, NA, "Including refugees.",
"Including refugees.", "Including refugees.", "Including refugees.",
"Including refugees.", "Including refugees.", "Including refugees.",
"Including refugees.", "Including refugees.", "Including refugees.",
"Including refugees.", "Including refugees.", NA, NA, "Including refugees.",
"Including refugees.", "Including refugees.", "Including refugees.",
NA, NA, NA, NA, NA, "Including refugees.", "Including refugees.",
"Including refugees.", "Including refugees.", "Data as at the end of December.",
"Data as at the end of December.", "Data as at the end of December.",
"Data as at the end of December.", "Including refugees.", "Including refugees.",
"Including refugees.", "Including refugees.", "Data as at the end of December.",
"Data as at the end of December.", "Data as at the end of December.",
"Including refugees.", "Including refugees.", "Including refugees.",
"Including refugees.", NA, NA, NA, "Including refugees.", "Including refugees.",
"Including refugees.", "Including refugees.", NA, NA, "Including Venezuelans displaced abroad.",
NA, NA, NA, NA, NA, "Including refugees.", "Including refugees.",
"Including refugees.", "Including refugees.", "Data as at the end of December.",
"Data as at the end of December.", "Data as at the end of December.",
"Including refugees.", "Including refugees.", "Including refugees.",
"Including refugees.", "Data as at the end of December.", "Data as at the end of December.",
"Data as at the end of December.", "Data as at the end of December.",
"Including refugees.", "Including refugees.", "Including refugees.",
"Including refugees.", NA, NA, NA, NA, "Including refugees.",
"Including refugees.", "Including refugees.", "Including refugees.",
NA, NA, NA, NA, NA, NA, NA, NA, "Including refugees.", "Including refugees.",
"Including refugees.", "Including refugees.", "Including refugees.",
"Including refugees.", "Including refugees.", "Including refugees.",
"Data as at the end of December.", "Data as at the end of December.",
"Including refugees.", "Including refugees.", "Including refugees.",
"Including refugees.", NA, NA, NA, NA, NA, NA, "Including Venezuelans displaced abroad.",
NA, "Including refugees.", "Including refugees.", "Including refugees.",
"Including refugees.", "Including Venezuelans displaced abroad.",
NA, NA, NA, "Including Christmas Island, Cocos (Keeling) Islands and Norfolk Island.",
"Including Christmas Island, Cocos (Keeling) Islands and Norfolk Island.",
"Including Christmas Island, Cocos (Keeling) Islands and Norfolk Island.",
"Including Christmas Island, Cocos (Keeling) Islands and Norfolk Island.",
"Data as at the end of December.", "Data as at the end of December.",
"Data as at the end of December.", "Data as at the end of December.",
"Including Christmas Island, Cocos (Keeling) Islands and Norfolk Island.",
"Including Christmas Island, Cocos (Keeling) Islands and Norfolk Island.",
"Including Christmas Island, Cocos (Keeling) Islands and Norfolk Island.",
"Including Christmas Island, Cocos (Keeling) Islands and Norfolk Island.",
"Data as at the end of December.", "Data as at the end of December.",
"Data as at the end of December.", "Data as at the end of December.",
"Including Christmas Island, Cocos (Keeling) Islands and Norfolk Island.",
"Including Christmas Island, Cocos (Keeling) Islands and Norfolk Island.",
"Including Christmas Island, Cocos (Keeling) Islands and Norfolk Island.",
"Including Christmas Island, Cocos (Keeling) Islands and Norfolk Island.",
NA, "Asylum-seekers are based on the number of applications lodged for protection visas.;Data relates to the end of 2014.",
NA, "Including Christmas Island, Cocos (Keeling) Islands and Norfolk Island.",
"Including Christmas Island, Cocos (Keeling) Islands and Norfolk Island.",
"Including Christmas Island, Cocos (Keeling) Islands and Norfolk Island.",
"Including Christmas Island, Cocos (Keeling) Islands and Norfolk Island.",
"Refugee estimate methodology under review.", "Refugee estimate methodology under review.",
NA, "Refugee estimate methodology under review.", "Refugee estimate methodology under review.",
"Refugee estimate methodology under review.", "Refugee estimate methodology under review.",
NA, NA, NA, NA, "Data as at the end of December.", "Data as at the end of December.",
"Data as at the end of December.", "Data as at the end of December.",
NA, NA, NA, NA, "Data as at the end of December.", "Data as at the end of December.",
"Data as at the end of December.", "Data as at the end of December.",
NA, NA, NA, NA, "Data relates to the end of 2014.", "Data relates to the end of 2014.",
"Data relates to the end of 2014.", "Data relates to the end of 2014.",
NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, "Including refugees.;Including Nagorno-Karabakh.",
"Including refugees.;Including Nagorno-Karabakh.", "Including refugees.;Including Nagorno-Karabakh.",
"Including refugees.;Including Nagorno-Karabakh.", "Data as at the end of December.",
"Data as at the end of December.", "Data as at the end of December.",
"Data as at the end of December.", "Including refugees.;Including Nagorno-Karabakh.",
"Including refugees.;Including Nagorno-Karabakh.", "Including refugees.;Including Nagorno-Karabakh.",
"Including refugees.;Including Nagorno-Karabakh.", "Data as at the end of December.",
"Data as at the end of December.", "Data as at the end of December.",
"Data as at the end of December.", "Including refugees.;Including Nagorno-Karabakh.",
"Including refugees.;Including Nagorno-Karabakh.", "Including refugees.;Including Nagorno-Karabakh.",
"Including refugees.;Including Nagorno-Karabakh.", NA, NA, NA,
NA, "Including refugees.;Including Nagorno-Karabakh.", "Including refugees.;Including Nagorno-Karabakh.",
"Including refugees.;Including Nagorno-Karabakh.", "Including refugees.;Including Nagorno-Karabakh.",
NA, NA, NA, NA, NA, NA, NA, NA, "Including refugees.", "Including refugees.",
"Including refugees.", "Including refugees.", "Including refugees.",
"Including refugees.", "Including refugees.", "Including refugees.",
"Data as at the end of December.", "Data as at the end of December.",
"Data as at the end of December.", "Including refugees.", "Including refugees.",
"Including refugees.", "Including refugees.", NA, NA, NA, NA,
NA, NA, NA, NA, "Including refugees.", "Including refugees.",
"Including refugees.", "Including refugees.", NA, NA, NA, NA,
NA, NA, NA, NA, "Including refugees.;Refers to foreign citizens.",
"Including refugees.;Refers to foreign citizens.", "Including refugees.;Refers to foreign citizens.",
"Including refugees.;Refers to foreign citizens.", "Data as at the end of December.",
"Data as at the end of December.", "Including refugees.;Refers to foreign citizens.",
"Including refugees.;Refers to foreign citizens.", "Including refugees.;Refers to foreign citizens.",
"Including refugees.;Refers to foreign citizens.", "Data as at the end of December.",
"Data as at the end of December.", "Data as at the end of December.",
"Including refugees.;Refers to foreign citizens.", "Including refugees.;Refers to foreign citizens.",
"Including refugees.;Refers to foreign citizens.", "Including refugees.;Refers to foreign citizens.",
NA, NA, NA, "Including refugees.;Refers to foreign citizens.",
"Including refugees.;Refers to foreign citizens.", "Including refugees.;Refers to foreign citizens.",
"Including refugees.;Refers to foreign citizens.", NA, NA, NA,
NA, NA, NA, "Including refugees.", "Including refugees.", "Including refugees.",
"Including refugees.", "Data as at the end of December.", "Data as at the end of December.",
"Data as at the end of December.", "Data as at the end of December.",
"Including refugees.", "Including refugees.", "Including refugees.",
"Including refugees.", "Data as at the end of December.", "Data as at the end of December.",
"Including refugees.", "Including refugees.", "Including refugees.",
"Including refugees.", "The refugee population includes 200,000 persons originating from Myanmar in a refugee-like situation. The Government of Bangladesh estimates the population to be between 300,000 and 500,000.",
NA, NA, "Including refugees.", "Including refugees.", "Including refugees.",
"Including refugees.", NA, NA, NA, NA, NA, NA, NA, "Including refugees.",
"Including refugees.", "Including refugees.", "Including refugees.",
"Including refugees.", "Including refugees.", "Including refugees.",
"Including refugees.", "Including refugees.", "Including refugees.",
"Including refugees.", "Including refugees.", NA, NA, NA, NA,
NA, "Including refugees.", "Including refugees.", "Including refugees.",
"Including refugees.", NA, NA, NA, NA, NA, NA, NA, NA, "Data as at the end of December.",
"Data as at the end of December.", "Data as at the end of December.",
"Data as at the end of December.", NA, NA, NA, NA, "Data as at the end of December.",
"Data as at the end of December.", "Data as at the end of December.",
"Data as at the end of December.", NA, NA, NA, NA, NA, NA, NA,
NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA,
NA, "Data as at the end of December.", "Data as at the end of December.",
"Data as at the end of December.", "Data as at the end of December.",
NA, NA, NA, NA, "Data as at the end of December.", "Data as at the end of December.",
"Data as at the end of December.", "Data as at the end of December.",
NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA,
NA, NA, NA, NA, "Including refugees.", "Including refugees.",
"Including refugees.", "Including refugees.", "Data as at the end of December.",
"Data as at the end of December.", "Data as at the end of December.",
"Including refugees.", "Including refugees.", "Including refugees.",
"Including refugees.", "Data as at the end of December.", "Data as at the end of December.",
"Data as at the end of December.", "Data as at the end of December.",
"Including refugees.", "Including refugees.", "Including refugees.",
"Including refugees.", NA, NA, "Including refugees.", "Including refugees.",
"Including refugees.", "Including refugees.", NA, NA, NA, NA,
NA, NA, NA, NA, "Including refugees.;Refers to foreign citizens.",
"Including refugees.;Refers to foreign citizens.", "Including refugees.;Refers to foreign citizens.",
"Including refugees.;Refers to foreign citizens.", "Data as at the end of December.",
"Data as at the end of December.", "Data as at the end of December.",
"Data as at the end of December.", "Including refugees.;Refers to foreign citizens.",
"Including refugees.;Refers to foreign citizens.", "Including refugees.;Refers to foreign citizens.",
"Including refugees.;Refers to foreign citizens.", "Data as at the end of December.",
"Data as at the end of December.", "Data as at the end of December.",
"Data as at the end of December.", "Including refugees.;Refers to foreign citizens.",
"Including refugees.;Refers to foreign citizens.", "Including refugees.;Refers to foreign citizens.",
"Including refugees.;Refers to foreign citizens.", NA, NA, NA,
"Including refugees.;Refers to foreign citizens.", "Including refugees.;Refers to foreign citizens.",
"Including refugees.;Refers to foreign citizens.", "Including refugees.;Refers to foreign citizens.",
NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA,
NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, "Including refugees.",
"Including refugees.", "Including refugees.", "Including refugees.",
"Data as at the end of December.", "Data as at the end of December.",
"Data as at the end of December.", "Data as at the end of December.",
"Including refugees.", "Including refugees.", "Including refugees.",
"Including refugees.", "Data as at the end of December.", "Data as at the end of December.",
"Data as at the end of December.", "Data as at the end of December.",
"Including refugees.", "Including refugees.", "Including refugees.",
"Including refugees.", NA, NA, NA, "Including refugees.", "Including refugees.",
"Including refugees.", "Including refugees.", NA, NA, "Including Venezuelans displaced abroad.",
NA, "Data is as of end-2021.", "Data is as of end-2021.", "Data is as of end-2021.",
"Data is as of end-2021.", NA, NA, NA, NA, "Data as at the end of December.;Bonaire only.",
"Data as at the end of December.;Bonaire only.", NA, NA, NA,
NA, "Estimate.;Including refugees.", "Estimate.;Including refugees.",
"Estimate.;Including refugees.", "Estimate.;Including refugees.",
"Data as at the end of December.", "Data as at the end of December.",
"Data as at the end of December.", "Data as at the end of December.",
"Estimate.;Including refugees.", "Estimate.;Including refugees.",
"Estimate.;Including refugees.", "Estimate.;Including refugees.",
"Data as at the end of December.", "Data as at the end of December.",
"Data as at the end of December.", "Data as at the end of December.",
"Estimate.;Including refugees.", "Estimate.;Including refugees.",
"Estimate.;Including refugees.", "Estimate.;Including refugees.",
NA, NA, NA, NA, "Estimate.;Including refugees.", "Estimate.;Including refugees.",
"Estimate.;Including refugees.", "Estimate.;Including refugees.",
NA, NA, NA, NA, NA, NA, NA, NA, "Including refugees.", "Including refugees.",
"Including refugees.", "Including refugees.", "Data as at the end of December.",
"Data as at the end of December.", "Data as at the end of December.",
"Data as at the end of December.", "Including refugees.", "Including refugees.",
"Including refugees.", "Including refugees.", "Data as at the end of December.",
"Data as at the end of December.", "Data as at the end of December.",
"Data as at the end of December.", "Including refugees.", "Including refugees.",
"Including refugees.", "Including refugees.", NA, NA, NA, "Including refugees.",
"Including refugees.", "Including refugees.", "Including refugees.",
NA, NA, NA, NA, NA, NA, NA, NA, "Including refugees.", "Including refugees.",
"Including refugees.", "Including refugees.", "Data as at the end of December.",
"Data as at the end of December.", "Data as at the end of December.",
"Data as at the end of December.", "Including refugees.", "Including refugees.",
"Including refugees.", "Including refugees.", "Data as at the end of December.",
"Data as at the end of December.", "Data as at the end of December.",
"Data as at the end of December.", "Including refugees.", "Including refugees.",
"Including refugees.", "Including refugees.", NA, NA, NA, NA,
"Including refugees.", "Including refugees.", "Including refugees.",
"Including refugees.", NA, NA, "Including Venezuelans displaced abroad.",
NA, NA, NA, NA, NA, "Including refugees.", "Including refugees.",
"Including refugees.", "Including refugees.", "Data as at the end of December.",
"Data as at the end of December.", "Including refugees.", "Including refugees.",
NA, NA, NA, NA, "Including refugees.", "Including refugees.",
"Including Venezuelans displaced abroad.", NA, "Including Venezuelans displaced abroad.",
NA, NA, NA, NA, NA, NA, NA, NA, NA, "Data as at the end of December.",
"Data as at the end of December.", NA, NA, NA, NA, NA, NA, NA,
NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, "Data as at the end of December.",
"Data as at the end of December.", "Data as at the end of December.",
NA, NA, NA, NA, "Data as at the end of December.", "Data as at the end of December.",
"Data as at the end of December.", NA, NA, NA, NA, "Data relates to the end of 2014.",
NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, "No official number of refugees residing in Bulgaria is available. It is estimated that between 1,000 and 2,000 refugees and humanitarian status holders remain in the country.",
"Including refugees.", "Including refugees.", "Including refugees.",
"Including refugees.", "Data as at the end of December.", "Data as at the end of December.",
"Data as at the end of December.", "Data as at the end of December.",
"Including refugees.", "Including refugees.", "Including refugees.",
"Including refugees.", "Data as at the end of December.", "Data as at the end of December.",
"Data as at the end of December.", "Data as at the end of December.",
"Including refugees.", "Including refugees.", "Including refugees.",
"Including refugees.", NA, NA, NA, "Including refugees.", "Including refugees.",
"Including refugees.", "Including refugees.", NA, NA, NA, NA,
NA, NA, NA, NA, "Including refugees.", "Including refugees.",
"Including refugees.", "Including refugees.", "Data as at the end of December.",
"Data as at the end of December.", "Data as at the end of December.",
"Data as at the end of December.", "Including refugees.", "Including refugees.",
"Including refugees.", "Including refugees.", "Data as at the end of December.",
"Data as at the end of December.", "Data as at the end of December.",
"Data as at the end of December.", "Including refugees.", "Including refugees.",
"Including refugees.", "Including refugees.", NA, NA, NA, NA,
"Including refugees.", "Including refugees.", "Including refugees.",
"Including refugees.", NA, NA, NA, NA, NA, NA, NA, NA, "Including refugees.",
"Including refugees.", "Including refugees.", "Including refugees.",
"Data as at the end of December.", "Data as at the end of December.",
"Including refugees.", "Including refugees.", "Including refugees.",
"Including refugees.", "Including refugees.", "Including refugees.",
"Including refugees.", "Including refugees.", NA, NA, "Including refugees.",
"Including refugees.", "Including refugees.", "Including refugees.",
NA, NA, NA, NA, "Including refugees.", "Including refugees.",
"Including refugees.", "Including refugees.", "Data as at the end of December.",
"Data as at the end of December.", "Data as at the end of December.",
"Data as at the end of December.", "Including refugees.", "Including refugees.",
"Including refugees.", "Including refugees.", "Data as at the end of December.",
"Data as at the end of December.", "Data as at the end of December.",
"Including refugees.", "Including refugees.", "Including refugees.",
"Including refugees.", NA, NA, NA, NA, "Including refugees.",
"Including refugees.", "Including refugees.", "Including refugees.",
NA, NA, NA, NA, NA, NA, NA, "Including refugees.", "Including refugees.",
"Including refugees.", "Including refugees.", "Data as at the end of December.",
"Data as at the end of December.", "Data as at the end of December.",
"Data as at the end of December.", "Including refugees.", "Including refugees.",
"Including refugees.", "Including refugees.", "Data as at the end of December.",
"Data as at the end of December.", "Data as at the end of December.",
"Data as at the end of December.", "Including refugees.", "Including refugees.",
"Including refugees.", "Including refugees.", NA, NA, NA, NA,
"Including refugees.", "Including refugees.", "Including refugees.",
"Including refugees.", NA, NA, NA, NA, NA, NA, NA, NA, NA, NA,
NA, NA, "Data as at the end of December.", "Data as at the end of December.",
"Data as at the end of December.", "Data as at the end of December.",
NA, NA, NA, NA, "Data as at the end of December.", "Data as at the end of December.",
"Data as at the end of December.", "Data as at the end of December.",
NA, NA, NA, NA, "Data as at the end of December.", "Data as at the end of December.",
"Data as at the end of December.", NA, NA, NA, NA, NA, NA, NA,
NA, NA, NA, NA, "The statistics on asylum-seekers (new applications, re-opened/repeat applications and/or appeal application) and refugees individually recognized in Canada include persons who had their claim assessed before the Refugee Protection Division and the Refugee Appeal Division of the Immigration Refugee Board as well as by the Department of Immigration, Refugees and Citizenship Canada through a Pre-Removal Risk Assessment.",
"Including refugees.;Refers to foreign citizens.", "Including refugees.;Refers to foreign citizens.",
"Including refugees.;Refers to foreign citizens.", "Including refugees.;Refers to foreign citizens.",
"Data as at the end of December.", "Data as at the end of December.",
"Data as at the end of December.", "Including refugees.;Refers to foreign citizens.",
"Including refugees.;Refers to foreign citizens.", NA, NA, NA,
NA, "Including refugees.;Refers to foreign citizens.", "Including refugees.;Refers to foreign citizens.",
NA, NA, "Including Venezuelans displaced abroad.", NA, NA, NA,
NA, NA, "Including refugees.;Refers to foreign citizens.", "Including refugees.;Refers to foreign citizens.",
"Including refugees.;Refers to foreign citizens.", "Including refugees.;Refers to foreign citizens.",
"Data as at the end of December.", "Data as at the end of December.",
"Data as at the end of December.", "Data as at the end of December.",
"Including refugees.;Refers to foreign citizens.", "Including refugees.;Refers to foreign citizens.",
"Including refugees.;Refers to foreign citizens.", "Including refugees.;Refers to foreign citizens.",
"Data as at the end of December.", "Data as at the end of December.",
"Data as at the end of December.", "Data as at the end of December.",
"Including refugees.;Refers to foreign citizens.", "Including refugees.;Refers to foreign citizens.",
"Including refugees.;Refers to foreign citizens.", "Including refugees.;Refers to foreign citizens.",
NA, NA, NA, NA, "Including refugees.;Refers to foreign citizens.",
"Including refugees.;Refers to foreign citizens.", "Including refugees.;Refers to foreign citizens.",
"Including refugees.;Refers to foreign citizens.", NA, NA, NA,
NA, NA, NA, NA, NA, "Including refugees.", "Including refugees.",
"Including refugees.", "Including refugees.", "Data as at the end of December.",
"Data as at the end of December.", "Data as at the end of December.",
"Including refugees.", "Including refugees.", "Including refugees.",
"Including refugees.", "Data as at the end of December.", "Data as at the end of December.",
"Data as at the end of December.", "Data as at the end of December.",
"Including refugees.", "Including refugees.", "Including refugees.",
"Including refugees.", NA, NA, NA, NA, "Including refugees.",
"Including refugees.", "Including refugees.", "Including refugees.",
NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, "Data as at the end of December.",
"Data as at the end of December.", "Data as at the end of December.",
NA, NA, NA, NA, "Data as at the end of December.", "Data as at the end of December.",
"Data as at the end of December.", NA, NA, NA, NA, NA, NA, NA,
NA, NA, NA, NA, NA, NA, "Including Venezuelans displaced abroad.",
NA, "The number of other people in need of international protection is estimated from the Refugee and Migrant Response Plan.",
"The number of other people in need of international protection is estimated from the Refugee and Migrant Response Plan.",
"The number of other people in need of international protection is estimated from the Refugee and Migrant Response Plan.",
"The number of other people in need of international protection is estimated from the Refugee and Migrant Response Plan.",
"Refers to foreign citizens.;For statistical purposes, the data for China do not include those for the Hong Kong Special Administrative Region (Hong Kong SAR), Macao Special Administrative Region (Macao SAR) and Taiwan Province of China.",
"Refers to foreign citizens.;For statistical purposes, the data for China do not include those for the Hong Kong Special Administrative Region (Hong Kong SAR), Macao Special Administrative Region (Macao SAR) and Taiwan Province of China.",
"Refers to foreign citizens.;For statistical purposes, the data for China do not include those for the Hong Kong Special Administrative Region (Hong Kong SAR), Macao Special Administrative Region (Macao SAR) and Taiwan Province of China.",
"Refers to foreign citizens.;For statistical purposes, the data for China do not include those for the Hong Kong Special Administrative Region (Hong Kong SAR), Macao Special Administrative Region (Macao SAR) and Taiwan Province of China.",
"Refers to foreign citizens.;For statistical purposes, the data for China do not include those for the Hong Kong Special Administrative Region (Hong Kong SAR), Macao Special Administrative Region (Macao SAR) and Taiwan Province of China.",
"Refers to foreign citizens.;For statistical purposes, the data for China do not include those for the Hong Kong Special Administrative Region (Hong Kong SAR), Macao Special Administrative Region (Macao SAR) and Taiwan Province of China.",
"Refers to foreign citizens.;For statistical purposes, the data for China do not include those for the Hong Kong Special Administrative Region (Hong Kong SAR), Macao Special Administrative Region (Macao SAR) and Taiwan Province of China.",
"Refers to foreign citizens.;For statistical purposes, the data for China do not include those for the Hong Kong Special Administrative Region (Hong Kong SAR), Macao Special Administrative Region (Macao SAR) and Taiwan Province of China.",
"Refers to foreign citizens.;For statistical purposes, the data for China do not include those for the Hong Kong Special Administrative Region (Hong Kong SAR), Macao Special Administrative Region (Macao SAR) and Taiwan Province of China.",
"Refers to foreign citizens.;For statistical purposes, the data for China do not include those for the Hong Kong Special Administrative Region (Hong Kong SAR), Macao Special Administrative Region (Macao SAR) and Taiwan Province of China.",
"Refers to foreign citizens.;For statistical purposes, the data for China do not include those for the Hong Kong Special Administrative Region (Hong Kong SAR), Macao Special Administrative Region (Macao SAR) and Taiwan Province of China.",
"Refers to foreign citizens.;For statistical purposes, the data for China do not include those for the Hong Kong Special Administrative Region (Hong Kong SAR), Macao Special Administrative Region (Macao SAR) and Taiwan Province of China.",
"Refers to foreign citizens.;For statistical purposes, the data for China do not include those for the Hong Kong Special Administrative Region (Hong Kong SAR), Macao Special Administrative Region (Macao SAR) and Taiwan Province of China.",
"Refers to foreign citizens.;For statistical purposes, the data for China do not include those for the Hong Kong Special Administrative Region (Hong Kong SAR), Macao Special Administrative Region (Macao SAR) and Taiwan Province of China.",
"Refers to foreign citizens.;For statistical purposes, the data for China do not include those for the Hong Kong Special Administrative Region (Hong Kong SAR), Macao Special Administrative Region (Macao SAR) and Taiwan Province of China.",
"For statistical purposes, the data for China do not include those for the Hong Kong Special Administrative Region (Hong Kong SAR), Macao Special Administrative Region (Macao SAR) and Taiwan Province of China.;Refers to foreign citizens.",
"For statistical purposes, the data for China do not include those for the Hong Kong Special Administrative Region (Hong Kong SAR), Macao Special Administrative Region (Macao SAR) and Taiwan Province of China.;Refers to foreign citizens.",
"For statistical purposes, the data for China do not include those for the Hong Kong Special Administrative Region (Hong Kong SAR), Macao Special Administrative Region (Macao SAR) and Taiwan Province of China.;Refers to foreign citizens.",
"For statistical purposes, the data for China do not include those for the Hong Kong Special Administrative Region (Hong Kong SAR), Macao Special Administrative Region (Macao SAR) and Taiwan Province of China.;Refers to foreign citizens.",
"For statistical purposes, the data for China do not include those for the Hong Kong Special Administrative Region (Hong Kong SAR), Macao Special Administrative Region (Macao SAR) and Taiwan Province of China.;The 300,000 Vietnamese refugees are well integrated and in practice receive protection from the Government of China.",
"For statistical purposes, the data for China do not include those for the Hong Kong Special Administrative Region (Hong Kong SAR), Macao Special Administrative Region (Macao SAR) and Taiwan Province of China.",
"For statistical purposes, the data for China do not include those for the Hong Kong Special Administrative Region (Hong Kong SAR), Macao Special Administrative Region (Macao SAR) and Taiwan Province of China.",
"For statistical purposes, the data for China do not include those for the Hong Kong Special Administrative Region (Hong Kong SAR), Macao Special Administrative Region (Macao SAR) and Taiwan Province of China.;Refers to foreign citizens.",
"For statistical purposes, the data for China do not include those for the Hong Kong Special Administrative Region (Hong Kong SAR), Macao Special Administrative Region (Macao SAR) and Taiwan Province of China.;Refers to foreign citizens.",
"For statistical purposes, the data for China do not include those for the Hong Kong Special Administrative Region (Hong Kong SAR), Macao Special Administrative Region (Macao SAR) and Taiwan Province of China.;Refers to foreign citizens.",
"For statistical purposes, the data for China do not include those for the Hong Kong Special Administrative Region (Hong Kong SAR), Macao Special Administrative Region (Macao SAR) and Taiwan Province of China.;Refers to foreign citizens.",
"For statistical purposes, the data for China do not include those for the Hong Kong Special Administrative Region (Hong Kong SAR), Macao Special Administrative Region (Macao SAR) and Taiwan Province of China.;The 303,100 Vietnamese refugees are well integrated and in practice receive protection from the Government of China.",
"For statistical purposes, the data for China do not include those for the Hong Kong Special Administrative Region (Hong Kong SAR), Macao Special Administrative Region (Macao SAR) and Taiwan Province of China.",
"For statistical purposes, the data for China do not include those for the Hong Kong Special Administrative Region (Hong Kong SAR), Macao Special Administrative Region (Macao SAR) and Taiwan Province of China.",
"Indo-Chinese population is no longer considered as refugees since June 2022.",
"Indo-Chinese population is no longer considered as refugees since June 2022.",
"Indo-Chinese population is no longer considered as refugees since June 2022.",
"Including refugees.", "Including refugees.", "Including refugees.",
"Including refugees.", "Data as at the end of December.", "Data as at the end of December.",
"Data as at the end of December.", "Including refugees.", "Including refugees.",
"Including refugees.", "Including refugees.", "Data as at the end of December.",
"Data as at the end of December.", "Data as at the end of December.",
"Data as at the end of December.", "Including refugees.", "Including refugees.",
"Including refugees.", "Including refugees.", NA, NA, NA, NA,
NA, NA, NA, NA, NA, NA, NA, "Including refugees.", "Including refugees.",
"Including refugees.", "Including refugees.", NA, NA, NA, NA,
NA, NA, NA, NA, NA, NA, NA, NA, "Data as at the end of December.",
"Data as at the end of December.", "Data as at the end of December.",
NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA,
"Data as at the end of December.", "Data as at the end of December.",
"Data as at the end of December.", "Data as at the end of December.",
NA, NA, NA, NA, "Data as at the end of December.", "Data as at the end of December.",
"Data as at the end of December.", "Data as at the end of December.",
NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, "Including Venezuelans displaced abroad.;With regard to the statelessness figures, in 2020, Colombia granted nationality by birth to 7,700 children with undetermined nationality born in Colombia to Venezuelan parents displaced abroad. As these children were both identified as persons with undetermined nationality and granted Colombian nationality in 2020, there was no impact on the figures reported.",
NA, NA, NA, NA, "The National Victims Registry contains the historical accumulated figure of the number of victims of displacement (exceeding 8.2 million) which includes the number of IDPs who are subject to attention and/or reparation established in Colombian Law 1448 (6.7 million).",
NA, NA, NA, NA, "Data as at the end of December.", "Data as at the end of December.",
NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, "Including refugees.",
"Including refugees.", "Including refugees.", "Including refugees.",
"Data as at the end of December.", "Data as at the end of December.",
"Data as at the end of December.", "Data as at the end of December.",
"Including refugees.", "Including refugees.", "Including refugees.",
"Including refugees.", "Data as at the end of December.", "Data as at the end of December.",
"Data as at the end of December.", "Data as at the end of December.",
"Including refugees.", "Including refugees.", "Including refugees.",
"Including refugees.", NA, NA, NA, NA, "Including refugees.",
"Including refugees.", "Including refugees.", "Including refugees.",
NA, NA, NA, NA, NA, NA, NA, NA, "Including refugees.", "Including refugees.",
"Including refugees.", "Including refugees.", "Including refugees.",
"Including refugees.", "Including refugees.", "Including refugees.",
"Including refugees.", "Including refugees.", "Including refugees.",
"Including refugees.", "Data as at the end of December.", "Data as at the end of December.",
"Data as at the end of December.", "Including refugees.", "Including refugees.",
"Including refugees.", "Including refugees.", "Data as at the end of December.",
"Data as at the end of December.", "Data as at the end of December.",
"Data as at the end of December.", "Including refugees.", "Including refugees.",
"Including refugees.", "Including refugees.", NA, NA, NA, NA,
"Including refugees.", "Including refugees.", "Including refugees.",
"Including refugees.", NA, NA, "Including Venezuelans displaced abroad.",
NA, NA, NA, NA, "Includes 65,200 applications by Nicaraguans during the first half of the year to formalize their asylum claim. Of these, 38,800 claims were formalized, 12,700 remained to be formalized and 13,700 were closed.",
"Including refugees.;Refers to foreign citizens.", "Including refugees.;Refers to foreign citizens.",
"Including refugees.;Refers to foreign citizens.", "Including refugees.;Refers to foreign citizens.",
"Data as at the end of December.", "Data as at the end of December.",
"Data as at the end of December.", "Data as at the end of December.",
"Including refugees.;Refers to foreign citizens.", "Including refugees.;Refers to foreign citizens.",
"Including refugees.;Refers to foreign citizens.", "Including refugees.;Refers to foreign citizens.",
"Data as at the end of December.", "Data as at the end of December.",
"Data as at the end of December.", "Data as at the end of December.",
"Including refugees.;Refers to foreign citizens.", "Including refugees.;Refers to foreign citizens.",
"Including refugees.;Refers to foreign citizens.", "Including refugees.;Refers to foreign citizens.",
NA, NA, NA, NA, "Including refugees.;Refers to foreign citizens.",
"Including refugees.;Refers to foreign citizens.", "Including refugees.;Refers to foreign citizens.",
"Including refugees.;Refers to foreign citizens.", NA, NA, "The new statelessness figure is based on a 2019 mapping study jointly conducted by the Government and UNHCR.",
NA, NA, NA, NA, "On 30 June 2022, the cessation clause for Ivorian refugees recommended by UNHCR came into effect.",
NA, NA, NA, NA, "Data as at the end of December.", "Data as at the end of December.",
"Data as at the end of December.", "Data as at the end of December.",
NA, NA, NA, NA, "Data as at the end of December.", "Data as at the end of December.",
"Data as at the end of December.", "Data as at the end of December.",
NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA,
NA, NA, NA, NA, NA, NA, NA, NA, "Data as at the end of December.",
"Data as at the end of December.", "Data as at the end of December.",
NA, NA, NA, NA, "Data as at the end of December.", "Data as at the end of December.",
"Data as at the end of December.", "Data as at the end of December.",
NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA,
NA, NA, "Including refugees.", "Including refugees.", "Including refugees.",
"Including refugees.", "Data as at the end of December.", "Data as at the end of December.",
"Data as at the end of December.", "Including refugees.", "Including refugees.",
"Including refugees.", "Including refugees.", NA, NA, NA, "Including refugees.",
"Including refugees.", "Including refugees.", "Including refugees.",
NA, NA, "Including Venezuelans displaced abroad.", NA, NA, NA,
"Including Venezuelans displaced abroad.", NA, NA, NA, "Refers to the whole country.",
"Refers to the whole country.", "Refers to the whole country.",
"Refers to the whole country.", "Data as at the end of December.",
"Data as at the end of December.", "Data as at the end of December.",
"Data as at the end of December.", "Refers to the whole country.",
"Refers to the whole country.", "Refers to the whole country.",
"Refers to the whole country.", "Data as at the end of December.",
"Data as at the end of December.", "Data as at the end of December.",
"Refers to the whole country.", "Refers to the whole country.",
"Refers to the whole country.", "Refers to the whole country.",
NA, NA, NA, NA, "Refers to the whole country.", "Refers to the whole country.",
"Refers to the whole country.", "Refers to the whole country.",
NA, NA, NA, NA, NA, NA, NA, NA, "Refers to foreign citizens.",
"Refers to foreign citizens.", "Refers to foreign citizens.",
"Refers to foreign citizens.", "Data as at the end of December.",
"Data as at the end of December.", "Data as at the end of December.",
"Refers to foreign citizens.", "Refers to foreign citizens.",
"Refers to foreign citizens.", "Refers to foreign citizens.",
"Data as at the end of December.", "Data as at the end of December.",
"Data as at the end of December.", "Data as at the end of December.",
"Refers to foreign citizens.", "Refers to foreign citizens.",
"Refers to foreign citizens.", "Refers to foreign citizens.",
"Data relates to the end of 2014.", NA, NA, NA, "Refers to foreign citizens.",
"Refers to foreign citizens.", "Refers to foreign citizens.",
"Refers to foreign citizens.", NA, NA, NA, NA, NA, NA, NA, NA,
"Estimate.", "Estimate.", "Estimate.", "Estimate.", "Estimate.",
"Estimate.", "Estimate.", "Estimate.", "Estimate.", "Estimate.",
"Estimate.", "Estimate.", "Estimate.", "Estimate.", "Estimate.",
"Estimate.", "Including refugees.", "Including refugees.", "Including refugees.",
"Including refugees.", "Data as at the end of December.", "Data as at the end of December.",
"Data as at the end of December.", "Data as at the end of December.",
"Including refugees.", "Including refugees.", "Including refugees.",
"Including refugees.", "Data as at the end of December.", "Data as at the end of December.",
"Data as at the end of December.", "Data as at the end of December.",
"Including refugees.", "Including refugees.", "Including refugees.",
"Including refugees.", "Estimate.", NA, NA, NA, "Including refugees.",
"Including refugees.", "Including refugees.", "Including refugees.",
NA, NA, NA, NA, "All refugees are assessed on an individual basis by the National Commission for Refugees.",
"All refugees are assessed on an individual basis by the National Commission for Refugees.",
"All refugees are assessed on an individual basis by the National Commission for Refugees.",
"All refugees are assessed on an individual basis by the National Commission for Refugees.",
"For statistical purposes, the data for Denmark do not include Faroe Islands, and Greenland.",
"For statistical purposes, the data for Denmark do not include Faroe Islands, and Greenland.",
"For statistical purposes, the data for Denmark do not include Faroe Islands, and Greenland.",
"For statistical purposes, the data for Denmark do not include Faroe Islands, and Greenland.",
"Data as at the end of December.", "Data as at the end of December.",
"Data as at the end of December.", "Data as at the end of December.",
"For statistical purposes, the data for Denmark do not include Faroe Islands, and Greenland.",
"For statistical purposes, the data for Denmark do not include Faroe Islands, and Greenland.",
"For statistical purposes, the data for Denmark do not include Faroe Islands, and Greenland.",
"For statistical purposes, the data for Denmark do not include Faroe Islands, and Greenland.",
"Data as at the end of December.", "Data as at the end of December.",
"Data as at the end of December.", "Data as at the end of December.",
"For statistical purposes, the data for Denmark do not include Faroe Islands, and Greenland.",
"For statistical purposes, the data for Denmark do not include Faroe Islands, and Greenland.",
"For statistical purposes, the data for Denmark do not include Faroe Islands, and Greenland.",
"For statistical purposes, the data for Denmark do not include Faroe Islands, and Greenland.",
"Data relates to the end of 2014.", NA, NA, NA, "For statistical purposes, the data for Denmark do not include Faroe Islands, and Greenland.",
"For statistical purposes, the data for Denmark do not include Faroe Islands, and Greenland.",
"For statistical purposes, the data for Denmark do not include Faroe Islands, and Greenland.",
"For statistical purposes, the data for Denmark do not include Faroe Islands, and Greenland.",
NA, NA, NA, NA, NA, NA, NA, NA, "Including refugees.", "Including refugees.",
"Including refugees.", "Including refugees.", "Data as at the end of December.",
"Data as at the end of December.", "Data as at the end of December.",
"Data as at the end of December.", "Including refugees.", "Including refugees.",
"Including refugees.", "Including refugees.", "Data as at the end of December.",
"Data as at the end of December.", "Data as at the end of December.",
"Data as at the end of December.", "Including refugees.", "Including refugees.",
"Including refugees.", "Including refugees.", NA, NA, NA, "Including refugees.",
"Including refugees.", "Including refugees.", "Including refugees.",
NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA,
NA, NA, NA, NA, NA, "Including refugees.", "Including refugees.",
"Including refugees.", "Including refugees.", "Including refugees.",
"Including refugees.", "Including refugees.", "Including refugees.",
"Data as at the end of December.", "Data as at the end of December.",
"Data as at the end of December.", "Including refugees.", "Including refugees.",
"Including refugees.", "Including refugees.", "Revised estimate includes only individuals born in the country where both parents were born abroad. This estimate does not include subsequent generations of individuals of foreign descent as such it does not include all persons without nationality.",
"Revised estimate includes only individuals born in the country where both parents were born abroad. This estimate does not include subsequent generations of individuals of foreign descent as such it does not include all persons without nationality.",
"Revised estimate includes only individuals born in the country where both parents were born abroad. This estimate does not include subsequent generations of individuals of foreign descent as such it does not include all persons without nationality.",
"Revised estimate includes only individuals born in the country where both parents were born abroad. This estimate does not include subsequent generations of individuals of foreign descent as such it does not include all persons without nationality.",
"Including refugees.", "Including refugees.", "Including refugees.",
"Including refugees.", "UNHCR is currently working with the authorities and other actors to determine the size of the population that found an effective nationality solution under Law 169-14. Since the adoption of Law 169-14 in May 2014, important steps have been taken by the Dominican Republic to confirm Dominican nationality through the validation of birth certificates of individuals born in the country to two migrant parents before 2007. According to information shared by the Dominican delegation during the 2019 High-Level Segment on Statelessness, approximately 48 per cent of the total Group A population of 61,049 persons had been authorized by the National Electoral Board (JCE) to request their nationality documentation. Additionally, as of December 2019, over 1,700 Group B persons (900 of which were children) had submitted applications for naturalization to the Ministry of Interior and of the Police (MIP). However, no naturalization decisions concerning this population had been issued by June 2020.",
"UNHCR is currently working with the authorities and other actors to determine the size of the population that found an effective nationality solution under Law 169-14. Since the adoption of Law 169-14 in May 2014, important steps have been taken by the Dominican Republic to confirm Dominican nationality through the validation of birth certificates of individuals born in the country to two migrant parents before 2007. According to information shared by the Dominican delegation during the 2019 High-Level Segment on Statelessness, approximately 48 per cent of the total Group A population of 61,049 persons had been authorized by the National Electoral Board (JCE) to request their nationality documentation. Additionally, as of December 2019, over 1,700 Group B persons (900 of which were children) had submitted applications for naturalization to the Ministry of Interior and of the Police (MIP). However, no naturalization decisions concerning this population had been issued by June 2020.",
"Including Venezuelans displaced abroad.;UNHCR is currently working with the authorities and other actors to determine the size of the population that found an effective nationality solution under Law 169-14. Since the adoption of Law 169-14 in May 2014, important steps have been taken by the Dominican Republic to confirm Dominican nationality through the validation of birth certificates of individuals born in the country to two migrant parents before 2007. According to information shared by the Dominican delegation during the 2019 High-Level Segment on Statelessness, approximately 48 per cent of the total Group A population of 61,049 persons had been authorized by the National Electoral Board (JCE) to request their nationality documentation. Additionally, as of December 2019, over 1,700 Group B persons (900 of which were children) had submitted applications for naturalization to the Ministry of Interior and of the Police (MIP). However, no naturalization decisions concerning this population had been issued by June 2020.",
NA, NA, NA, NA, NA, "Including refugees.", "Including refugees.",
"Including refugees.", "Including refugees.", "Data as at the end of December.",
"Data as at the end of December.", "Data as at the end of December.",
"Data as at the end of December.", "Including refugees.", "Including refugees.",
"Including refugees.", "Including refugees.", "Data as at the end of December.",
"Data as at the end of December.", "Data as at the end of December.",
"Including refugees.", "Including refugees.", "Including refugees.",
"Including refugees.", "Data as at the end of December.", "Data as at the end of December.",
"Data as at the end of December.", "Including refugees.", "Including refugees.",
"Including refugees.", "Including refugees.", NA, NA, "Including Venezuelans displaced abroad.",
NA, NA, NA, NA, NA, "Including refugees.", "Including refugees.",
"Including refugees.", "Including refugees.", "Data as at the end of December.",
"Data as at the end of December.", "Data as at the end of December.",
"Data as at the end of December.", "Including refugees.", "Including refugees.",
"Including refugees.", "Including refugees.", "Data as at the end of December.",
"Data as at the end of December.", "Data as at the end of December.",
"Data as at the end of December.", "Including refugees.", "Including refugees.",
"Including refugees.", "Including refugees.", NA, NA, NA, NA,
"Including refugees.", "Including refugees.", "Including refugees.",
"Including refugees.", NA, NA, NA, NA, NA, NA, NA, "Including refugees.",
"Including refugees.", "Including refugees.", "Including refugees.",
"Data as at the end of December.", "Data as at the end of December.",
"Data as at the end of December.", "Data as at the end of December.",
"Including refugees.", "Including refugees.", "Including refugees.",
"Including refugees.", "Data as at the end of December.", "Data as at the end of December.",
"Data as at the end of December.", "Including refugees.", "Including refugees.",
"Including refugees.", "Including refugees.", NA, NA, "Including refugees.",
"Including refugees.", "Including refugees.", "Including refugees.",
NA, NA, NA, NA, NA, NA, NA, NA, "Refers to foreign citizens.",
"Refers to foreign citizens.", "Refers to foreign citizens.",
"Refers to foreign citizens.", "Refers to foreign citizens.",
"Refers to foreign citizens.", "Refers to foreign citizens.",
"Refers to foreign citizens.", "Refers to foreign citizens.",
"Refers to foreign citizens.", "Refers to foreign citizens.",
"Refers to foreign citizens.", "Refers to foreign citizens.",
"Refers to foreign citizens.", "Refers to foreign citizens.",
"Refers to foreign citizens.", "Estimate.;Including refugees.",
"Estimate.;Including refugees.", "Estimate.;Including refugees.",
"Estimate.;Including refugees.", "Data as at the end of December.",
"Data as at the end of December.", "Data as at the end of December.",
"Data as at the end of December.", "Estimate.;Including refugees.",
"Estimate.;Including refugees.", "Estimate.;Including refugees.",
"Estimate.;Including refugees.", "Data as at the end of December.",
"Data as at the end of December.", "Data as at the end of December.",
"Data as at the end of December.", "Estimate.;Including refugees.",
"Estimate.;Including refugees.", "Estimate.;Including refugees.",
"Estimate.;Including refugees.", NA, NA, NA, NA, NA, NA, NA,
NA, "Estimate.;Including refugees.", "Estimate.;Including refugees.",
"Estimate.;Including refugees.", "Estimate.;Including refugees.",
NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, "Data as at the end of December.",
"Data as at the end of December.", "Data as at the end of December.",
"Data as at the end of December.", NA, NA, NA, NA, "Data as at the end of December.",
"Data as at the end of December.", "Data as at the end of December.",
"Data as at the end of December.", NA, NA, NA, NA, NA, NA, "Almost all people recorded as being stateless have permanent residence and enjoy more rights than foreseen in the 1954 Convention relating to the Status of Stateless Persons.",
NA, NA, NA, NA, NA, NA, NA, "Almost all people recorded as being stateless have permanent residence and enjoy more rights than foreseen in the 1954 Convention relating to the Status of Stateless Persons.",
NA, "Almost all people recorded as being stateless have permanent residence and enjoy more rights than foreseen in the 1954 Convention relating to the Status of Stateless Persons.",
"Almost all people recorded as being stateless have permanent residence and enjoy more rights than foreseen in the 1954 Convention relating to the Status of Stateless Persons.",
"Almost all people recorded as being stateless have permanent residence and enjoy more rights than foreseen in the 1954 Convention relating to the Status of Stateless Persons.",
"Almost all people recorded as being stateless have permanent residence and enjoy more rights than foreseen in the 1954 Convention relating to the Status of Stateless Persons.",
"Including refugees.", "Including refugees.", "Including refugees.",
"Including refugees.", "Data as at the end of December.", "Data as at the end of December.",
"Data as at the end of December.", "Including refugees.", "Including refugees.",
"Including refugees.", "Including refugees.", "Data as at the end of December.",
"Data as at the end of December.", "Including refugees.", "Including refugees.",
"Including refugees.", "Including refugees.", NA, NA, NA, NA,
"Including refugees.", "Including refugees.", "Including refugees.",
"Including refugees.", NA, NA, NA, NA, NA, NA, NA, "Including refugees.",
"Including refugees.", "Including refugees.", "Including refugees.",
"Data as at the end of December.", "Data as at the end of December.",
"Data as at the end of December.", "Data as at the end of December.",
"Including refugees.", "Including refugees.", "Including refugees.",
"Including refugees.", "Data as at the end of December.", "Data as at the end of December.",
"Data as at the end of December.", "Data as at the end of December.",
"Including refugees.", "Including refugees.", "Including refugees.",
"Including refugees.", NA, NA, NA, NA, "Including refugees.",
"Including refugees.", "Including refugees.", "Including refugees.",
NA, NA, NA, NA, NA, NA, NA, NA, "A dispute exists between the Governments of Argentina and the United Kingdom of Great Britain and Northern Ireland concerning sovereignty over the Falkland Islands (Malvinas). For statistical purposes, the data for United Kingdom do not include this area.",
"A dispute exists between the Governments of Argentina and the United Kingdom of Great Britain and Northern Ireland concerning sovereignty over the Falkland Islands (Malvinas). For statistical purposes, the data for United Kingdom do not include this area.",
"A dispute exists between the Governments of Argentina and the United Kingdom of Great Britain and Northern Ireland concerning sovereignty over the Falkland Islands (Malvinas). For statistical purposes, the data for United Kingdom do not include this area.",
"A dispute exists between the Governments of Argentina and the United Kingdom of Great Britain and Northern Ireland concerning sovereignty over the Falkland Islands (Malvinas). For statistical purposes, the data for United Kingdom do not include this area.",
"A dispute exists between the Governments of Argentina and the United Kingdom of Great Britain and Northern Ireland concerning sovereignty over the Falkland Islands (Malvinas). For statistical purposes, the data for United Kingdom do not include this area.",
"A dispute exists between the Governments of Argentina and the United Kingdom of Great Britain and Northern Ireland concerning sovereignty over the Falkland Islands (Malvinas). For statistical purposes, the data for United Kingdom do not include this area.",
"A dispute exists between the Governments of Argentina and the United Kingdom of Great Britain and Northern Ireland concerning sovereignty over the Falkland Islands (Malvinas). For statistical purposes, the data for United Kingdom do not include this area.",
"A dispute exists between the Governments of Argentina and the United Kingdom of Great Britain and Northern Ireland concerning sovereignty over the Falkland Islands (Malvinas). For statistical purposes, the data for United Kingdom do not include this area.",
NA, NA, NA, NA, NA, NA, NA, NA, "Including refugees.", "Including refugees.",
"Including refugees.", "Including refugees.", "Including refugees.",
"Including refugees.", "Including refugees.", "Including refugees.",
"Data as at the end of December.", "Data as at the end of December.",
"Data as at the end of December.", "Including refugees.", "Including refugees.",
"Including refugees.", "Including refugees.", NA, NA, NA, "Including refugees.",
"Including refugees.", "Including refugees.", "Including refugees.",
NA, NA, NA, NA, NA, NA, NA, NA, "Including \xc5land Islands.",
"Including \xc5land Islands.", "Including \xc5land Islands.",
"Including \xc5land Islands.", "Data as at the end of December.",
"Data as at the end of December.", "Data as at the end of December.",
"Including \xc5land Islands.", "Including \xc5land Islands.",
"Including \xc5land Islands.", "Including \xc5land Islands.",
"Data as at the end of December.", "Data as at the end of December.",
"Data as at the end of December.", "Data as at the end of December.",
"Including \xc5land Islands.", "Including \xc5land Islands.",
"Including \xc5land Islands.", "Including \xc5land Islands.",
"Data relates to the end of 2014.", NA, NA, NA, "Including \xc5land Islands.",
"Including \xc5land Islands.", "Including \xc5land Islands.",
"Including \xc5land Islands.", NA, NA, NA, NA, NA, NA, NA, NA,
NA, NA, NA, NA, "Data as at the end of December.", "Data as at the end of December.",
"Data as at the end of December.", "Data as at the end of December.",
NA, NA, NA, NA, "Data as at the end of December.", "Data as at the end of December.",
"Data as at the end of December.", "Data as at the end of December.",
NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA,
NA, NA, NA, NA, "Including refugees.", "Including refugees.",
"Including refugees.", "Including refugees.", "Including refugees.",
"Including refugees.", "Including refugees.", "Including refugees.",
"Including refugees.", "Including refugees.", "Including refugees.",
"Including refugees.", "Including refugees.", "Including refugees.",
"Including refugees.", "Including refugees.", "Including refugees.",
"Including refugees.", "Including refugees.", "Including refugees.",
"Including refugees.", "Including refugees.", "Including refugees.",
"Including refugees.", "Including refugees.", "Including refugees.",
"Including refugees.", "Including refugees.", "Including refugees.",
"Including refugees.", "Including refugees.", "Including refugees.",
"Including refugees.;Refers to foreign citizens.", "Including refugees.;Refers to foreign citizens.",
"Including refugees.;Refers to foreign citizens.", "Including refugees.;Refers to foreign citizens.",
"Data as at the end of December.", "Data as at the end of December.",
"Data as at the end of December.", "Data as at the end of December.",
"Including refugees.;Refers to foreign citizens.", "Including refugees.;Refers to foreign citizens.",
"Including refugees.;Refers to foreign citizens.", "Including refugees.;Refers to foreign citizens.",
"Data as at the end of December.", "Data as at the end of December.",
"Data as at the end of December.", "Data as at the end of December.",
"Including refugees.;Refers to foreign citizens.", "Including refugees.;Refers to foreign citizens.",
"Including refugees.;Refers to foreign citizens.", "Including refugees.;Refers to foreign citizens.",
NA, NA, NA, NA, NA, NA, NA, "Including refugees.;Refers to foreign citizens.",
"Including refugees.;Refers to foreign citizens.", "Including refugees.;Refers to foreign citizens.",
"Including refugees.;Refers to foreign citizens.", NA, NA, NA,
NA, NA, NA, "Including refugees.", "Including refugees.", "Including refugees.",
"Including refugees.", "Data as at the end of December.", "Data as at the end of December.",
"Data as at the end of December.", "Data as at the end of December.",
"Including refugees.", "Including refugees.", "Including refugees.",
"Including refugees.", "Data as at the end of December.", "Data as at the end of December.",
"Data as at the end of December.", "Data as at the end of December.",
"Including refugees.", "Including refugees.", "Including refugees.",
"Including refugees.", NA, NA, NA, NA, NA, NA, NA, "Including refugees.",
"Including refugees.", "Including refugees.", "Including refugees.",
NA, NA, NA, NA, NA, NA, "Including refugees.;Including Abkhazia and South Ossetia.",
"Including refugees.;Including Abkhazia and South Ossetia.",
"Including refugees.;Including Abkhazia and South Ossetia.",
"Including refugees.;Including Abkhazia and South Ossetia.",
"Data as at the end of December.", "Data as at the end of December.",
"Data as at the end of December.", "Data as at the end of December.",
"Including refugees.;Including Abkhazia and South Ossetia.",
"Including refugees.;Including Abkhazia and South Ossetia.",
"Including refugees.;Including Abkhazia and South Ossetia.",
"Including refugees.;Including Abkhazia and South Ossetia.",
"Data as at the end of December.", "Data as at the end of December.",
"Data as at the end of December.", "Data as at the end of December.",
"Including refugees.;Including Abkhazia and South Ossetia.",
"Including refugees.;Including Abkhazia and South Ossetia.",
"Including refugees.;Including Abkhazia and South Ossetia.",
"Including refugees.;Including Abkhazia and South Ossetia.",
NA, NA, NA, NA, "Including refugees.;Including Abkhazia and South Ossetia.",
"Including refugees.;Including Abkhazia and South Ossetia.",
"Including refugees.;Including Abkhazia and South Ossetia.",
"Including refugees.;Including Abkhazia and South Ossetia.",
NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, "Data as at the end of December.",
"Data as at the end of December.", "Data as at the end of December.",
"Data as at the end of December.", NA, NA, NA, NA, "Data as at the end of December.",
"Data as at the end of December.", "Data as at the end of December.",
"Data as at the end of December.", NA, NA, NA, NA, NA, NA, NA,
NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, "Including refugees.",
"Including refugees.", "Including refugees.", "Including refugees.",
"Data as at the end of December.", "Data as at the end of December.",
"Data as at the end of December.", "Data as at the end of December.",
"Including refugees.", "Including refugees.", "Including refugees.",
"Including refugees.", "Data as at the end of December.", "Data as at the end of December.",
"Data as at the end of December.", "Data as at the end of December.",
"Including refugees.", "Including refugees.", "Including refugees.",
"Including refugees.", NA, NA, NA, NA, NA, NA, NA, "Including refugees.",
"Including refugees.", "Including refugees.", "Including refugees.",
NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA,
NA, NA, "Data as at the end of December.", "Data as at the end of December.",
"Data as at the end of December.", "Data as at the end of December.",
NA, NA, NA, NA, "Data as at the end of December.", "Data as at the end of December.",
"Data as at the end of December.", "Data as at the end of December.",
NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA,
NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA,
NA, NA, NA, NA, "Data as at the end of December.", "Data as at the end of December.",
NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA,
NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA,
NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, "Including refugees.",
"Including refugees.", "Including refugees.", "Including refugees.",
"Data as at the end of December.", "Data as at the end of December.",
"Data as at the end of December.", "Including refugees.", "Including refugees.",
"Including refugees.", "Including refugees.", "Data as at the end of December.",
"Data as at the end of December.", "Data as at the end of December.",
"Including refugees.", "Including refugees.", "Including refugees.",
"Including refugees.", NA, NA, NA, "Including refugees.", "Including refugees.",
"Including refugees.", "Including refugees.", NA, NA, NA, NA,
NA, NA, NA, NA, "Including refugees.;Refers to foreign citizens.",
"Including refugees.;Refers to foreign citizens.", "Including refugees.;Refers to foreign citizens.",
"Including refugees.;Refers to foreign citizens.", "Data as at the end of December.",
"Data as at the end of December.", "Data as at the end of December.",
"Data as at the end of December.", "Including refugees.;Refers to foreign citizens.",
"Including refugees.;Refers to foreign citizens.", "Including refugees.;Refers to foreign citizens.",
"Including refugees.;Refers to foreign citizens.", "Data as at the end of December.",
"Data as at the end of December.", "Data as at the end of December.",
"Data as at the end of December.", "Including refugees.;Refers to foreign citizens.",
"Including refugees.;Refers to foreign citizens.", "Including refugees.;Refers to foreign citizens.",
"Including refugees.;Refers to foreign citizens.", NA, NA, NA,
NA, NA, NA, NA, "Including refugees.;Refers to foreign citizens.",
"Including refugees.;Refers to foreign citizens.", "Including refugees.;Refers to foreign citizens.",
"Including refugees.;Refers to foreign citizens.", NA, NA, NA,
NA, NA, NA, "Including refugees.", "Including refugees.", "Including refugees.",
"Including refugees.", "Data as at the end of December.", "Data as at the end of December.",
"Data as at the end of December.", "Including refugees.", "Including refugees.",
"Including refugees.", "Including refugees.", "Data as at the end of December.",
"Data as at the end of December.", "Data as at the end of December.",
"Data as at the end of December.", "Including refugees.", "Including refugees.",
"Including refugees.", "Including refugees.", NA, NA, NA, "Including refugees.",
"Including refugees.", "Including refugees.", "Including refugees.",
NA, NA, NA, NA, NA, NA, "Including refugees.", "Including refugees.",
"Including refugees.", "Including refugees.", "Including refugees.",
"Including refugees.", "Including refugees.", "Including refugees.",
"Data as at the end of December.", "Data as at the end of December.",
"Including refugees.", "Including refugees.", "Including refugees.",
"Including refugees.", NA, NA, NA, "Including refugees.", "Including refugees.",
"Including refugees.", "Including refugees.", NA, NA, "Including Venezuelans displaced abroad.",
NA, NA, NA, NA, NA, "Including refugees.", "Including refugees.",
"Including refugees.", "Including refugees.", "Including refugees.",
"Including refugees.", "Including refugees.", "Including refugees.",
"Data as at the end of December.", "Data as at the end of December.",
"Including refugees.", "Including refugees.", "Including refugees.",
"Including refugees.", NA, NA, NA, "Figure refers to individuals without a nationality who were born in the Dominican Republic prior to January 2010 and who were identified by UNHCR in Haiti since June 2015.",
"Figure refers to individuals without a nationality who were born in the Dominican Republic prior to January 2010 and who were identified by UNHCR in Haiti since June 2015.",
"Figure refers to individuals without a nationality who were born in the Dominican Republic prior to January 2010 and who were identified by UNHCR in Haiti since June 2015.",
"Figure refers to individuals without a nationality who were born in the Dominican Republic prior to January 2010 and who were identified by UNHCR in Haiti since June 2015.",
"Including refugees.", "Including refugees.", "Including refugees.",
"Including refugees.", NA, NA, NA, NA, NA, "Estimate.;Data refer to the Vatican City State.",
"Estimate.;Data refer to the Vatican City State.", "Estimate.;Data refer to the Vatican City State.",
"Estimate.;Data refer to the Vatican City State.", "Estimate.;Data refer to the Vatican City State.",
"Estimate.;Data refer to the Vatican City State.", "Estimate.;Data refer to the Vatican City State.",
"Estimate.;Data refer to the Vatican City State.", "Including refugees.",
"Including refugees.", "Including refugees.", "Including refugees.",
"Data as at the end of December.", "Data as at the end of December.",
"Data as at the end of December.", "Including refugees.", "Including refugees.",
"Including refugees.", "Including refugees.", "Data as at the end of December.",
"Data as at the end of December.", "Data as at the end of December.",
"Including refugees.", "Including refugees.", "Including refugees.",
"Including refugees.", NA, NA, NA, "Including refugees.", "Including refugees.",
"Including refugees.", "Including refugees.", NA, NA, NA, NA,
NA, NA, NA, NA, NA, NA, NA, NA, "Data as at the end of December.",
"Data as at the end of December.", "Data as at the end of December.",
"Data as at the end of December.", NA, NA, NA, NA, "Data as at the end of December.",
"Data as at the end of December.", "Data as at the end of December.",
"Data as at the end of December.", NA, NA, NA, NA, NA, NA, NA,
NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA,
NA, "Data as at the end of December.", "Data as at the end of December.",
"Data as at the end of December.", "Data as at the end of December.",
NA, NA, NA, NA, "Data as at the end of December.", "Data as at the end of December.",
"Data as at the end of December.", "Data as at the end of December.",
NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA,
NA, NA, NA, NA, "Including refugees.", "Including refugees.",
"Including refugees.", "Including refugees.", "Data as at the end of December.",
"Data as at the end of December.", "Data as at the end of December.",
"Data as at the end of December.", "Including refugees.", "Including refugees.",
"Including refugees.", "Including refugees.", "Data as at the end of December.",
"Data as at the end of December.", "Data as at the end of December.",
"Data as at the end of December.", "Including refugees.", "Including refugees.",
"Including refugees.", "Including refugees.", NA, NA, NA, "Including refugees.",
"Including refugees.", "Including refugees.", "Including refugees.",
NA, NA, NA, NA, NA, NA, NA, "Including refugees.", "Including refugees.",
"Including refugees.", "Including refugees.", "Data as at the end of December.",
"Data as at the end of December.", "Data as at the end of December.",
"Data as at the end of December.", "Including refugees.", "Including refugees.",
"Including refugees.", "Including refugees.", "Data as at the end of December.",
"Data as at the end of December.", "Data as at the end of December.",
"Data as at the end of December.", "Including refugees.", "Including refugees.",
"Including refugees.", "Including refugees.", NA, NA, NA, "Including refugees.",
"Including refugees.", "Including refugees.", "Including refugees.",
NA, NA, NA, NA, NA, NA, "There are indications that a potentially sizable population of non-displaced stateless persons exists for whom no data is available.",
"Including refugees.;Refers to foreign citizens.", "Including refugees.;Refers to foreign citizens.",
"Including refugees.;Refers to foreign citizens.", "Including refugees.;Refers to foreign citizens.",
"Data as at the end of December.", "Data as at the end of December.",
"Data as at the end of December.", "Data as at the end of December.",
"Including refugees.;Refers to foreign citizens.", "Including refugees.;Refers to foreign citizens.",
"Including refugees.;Refers to foreign citizens.", "Including refugees.;Refers to foreign citizens.",
"Data as at the end of December.", "Data as at the end of December.",
"Data as at the end of December.", "Data as at the end of December.",
"Including refugees.;Refers to foreign citizens.", "Including refugees.;Refers to foreign citizens.",
"Including refugees.;Refers to foreign citizens.", "Including refugees.;Refers to foreign citizens.",
NA, NA, NA, NA, "Including refugees.;Refers to foreign citizens.",
"Including refugees.;Refers to foreign citizens.", "Including refugees.;Refers to foreign citizens.",
"Including refugees.;Refers to foreign citizens.", NA, NA, NA,
NA, NA, NA, NA, "This includes around 800,000 refugees and 40,700 UNHCR pre-registered new arrivals, reported as refugee-like. Based on information received from the Government in October 2020, the Islamic Republic of Iran hosts 800,000 refugees, of which 780,000 are Afghan Amayesh cardholders and 20,000 are Iraqi Hoviat cardholders. These cards effectively offer refugee status to their holders.",
"Including refugees.;Refers to foreign citizens.", "Including refugees.;Refers to foreign citizens.",
"Including refugees.;Refers to foreign citizens.", "Including refugees.;Refers to foreign citizens.",
"Data as at the end of December.", "Data as at the end of December.",
"Data as at the end of December.", "Data as at the end of December.",
"Including refugees.;Refers to foreign citizens.", "Including refugees.;Refers to foreign citizens.",
"Including refugees.;Refers to foreign citizens.", "Including refugees.;Refers to foreign citizens.",
"Data as at the end of December.", "Data as at the end of December.",
"Data as at the end of December.", "Data as at the end of December.",
"Including refugees.;Refers to foreign citizens.", "Including refugees.;Refers to foreign citizens.",
"Including refugees.;Refers to foreign citizens.", "Including refugees.;Refers to foreign citizens.",
NA, NA, "Including an estimate for stateless persons populations in line with Law 26 of 2006, which allows stateless persons to apply for nationality in certain circumstances.",
NA, "Including refugees.;Refers to foreign citizens.", "Including refugees.;Refers to foreign citizens.",
"Including refugees.;Refers to foreign citizens.", "Including refugees.;Refers to foreign citizens.",
NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, "Data as at the end of December.",
"Data as at the end of December.", "Data as at the end of December.",
"Data as at the end of December.", NA, NA, NA, NA, "Data as at the end of December.",
"Data as at the end of December.", "Data as at the end of December.",
"Data as at the end of December.", NA, NA, NA, NA, "Data as at the end of December.",
"Data as at the end of December.", "Data as at the end of December.",
"Data as at the end of December.", NA, NA, NA, NA, NA, NA, NA,
NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, "Including refugees.",
"Including refugees.", "Including refugees.", "Including refugees.",
"Data as at the end of December.", "Data as at the end of December.",
"Data as at the end of December.", "Including refugees.", "Including refugees.",
"Including refugees.", "Including refugees.", "Data as at the end of December.",
"Data as at the end of December.", "Data as at the end of December.",
"Data as at the end of December.", "Including refugees.", "Including refugees.",
"Including refugees.", "Including refugees.", NA, NA, NA, NA,
"Including refugees.", "Including refugees.", "Including refugees.",
"Including refugees.", NA, NA, NA, NA, NA, NA, NA, NA, NA, NA,
NA, NA, "Data as at the end of December.", "Data as at the end of December.",
"Data as at the end of December.", NA, NA, NA, NA, "Data as at the end of December.",
"Data as at the end of December.", "Data as at the end of December.",
"Data as at the end of December.", NA, NA, NA, NA, "Data relates to the end of 2014.",
NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, "Including refugees.",
"Including refugees.", "Including refugees.", "Including refugees.",
"Including refugees.", "Including refugees.", "Including refugees.",
"Including refugees.", "Data as at the end of December.", "Data as at the end of December.",
"Including refugees.", "Including refugees.", "Including refugees.",
"Including refugees.", NA, NA, NA, "Including refugees.", "Including refugees.",
"Including refugees.", "Including refugees.", NA, NA, "Including Venezuelans displaced abroad.",
NA, NA, NA, NA, NA, "Refers to foreign citizens.", "Refers to foreign citizens.",
"Refers to foreign citizens.", "Refers to foreign citizens.",
"Data as at the end of December.", "Data as at the end of December.",
"Data as at the end of December.", "Data as at the end of December.",
"Refers to foreign citizens.", "Refers to foreign citizens.",
"Refers to foreign citizens.", "Refers to foreign citizens.",
"Data as at the end of December.", "Data as at the end of December.",
"Data as at the end of December.", "Data as at the end of December.",
"Refers to foreign citizens.", "Refers to foreign citizens.",
"Refers to foreign citizens.", "Refers to foreign citizens.",
"Estimate.", "Estimate.", "Estimate.", "Estimate.", "Refers to foreign citizens.",
"Refers to foreign citizens.", "Refers to foreign citizens.",
"Refers to foreign citizens.", "Estimate.", "Estimate.", "Estimate.",
"Estimate.", "Data is as of end-2021.;UNHCR estimates.", "Data is as of end-2021.;UNHCR estimates.",
"Data is as of end-2021.;UNHCR estimates.", "Data is as of end-2021.;UNHCR estimates.",
"Including refugees.;Refers to foreign citizens.", "Including refugees.;Refers to foreign citizens.",
"Including refugees.;Refers to foreign citizens.", "Including refugees.;Refers to foreign citizens.",
"Data as at the end of December.", "Data as at the end of December.",
"Data as at the end of December.", "Data as at the end of December.",
"Including refugees.;Refers to foreign citizens.", "Including refugees.;Refers to foreign citizens.",
"Including refugees.;Refers to foreign citizens.", "Including refugees.;Refers to foreign citizens.",
"Data as at the end of December.", "Data as at the end of December.",
"Data as at the end of December.", "Data as at the end of December.",
"Including refugees.;Refers to foreign citizens.", "Including refugees.;Refers to foreign citizens.",
"Including refugees.;Refers to foreign citizens.", "Including refugees.;Refers to foreign citizens.",
"Includes Iraqi refugees registered with UNHCR.", NA, NA, "Including refugees.;Refers to foreign citizens.",
"Including refugees.;Refers to foreign citizens.", "Including refugees.;Refers to foreign citizens.",
"Including refugees.;Refers to foreign citizens.", "Includes Iraqi refugees registered with UNHCR.",
NA, NA, NA, NA, NA, NA, "The refugee population includes 34,000 Iraqis registered with UNHCR. Government estimated the number of Iraqis at 400,000 individuals at the end of March 2015 including refugees and other categories.",
"Including refugees.", "Including refugees.", "Including refugees.",
"Including refugees.", "Data as at the end of December.", "Data as at the end of December.",
"Data as at the end of December.", "Data as at the end of December.",
"Including refugees.", "Including refugees.", "Including refugees.",
"Including refugees.", "Data as at the end of December.", "Data as at the end of December.",
"Data as at the end of December.", "Data as at the end of December.",
"Including refugees.", "Including refugees.", "Including refugees.",
"Including refugees.", NA, NA, NA, NA, "Including refugees.",
"Including refugees.", "Including refugees.", "Including refugees.",
NA, NA, NA, NA, NA, NA, NA, NA, "Including refugees.", "Including refugees.",
"Including refugees.", "Including refugees.", "Data as at the end of December.",
"Data as at the end of December.", "Data as at the end of December.",
"Data as at the end of December.", "Including refugees.", "Including refugees.",
"Including refugees.", "Including refugees.", "Data as at the end of December.",
"Data as at the end of December.", "Data as at the end of December.",
"Data as at the end of December.", "Including refugees.", "Including refugees.",
"Including refugees.", "Including refugees.", NA, NA, NA, NA,
"Including refugees.", "Including refugees.", "Including refugees.",
"Including refugees.", NA, NA, NA, NA, NA, NA, NA, NA, NA, NA,
NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, "Including refugees.;Refers to foreign citizens.",
"Including refugees.;Refers to foreign citizens.", "Including refugees.;Refers to foreign citizens.",
"Including refugees.;Refers to foreign citizens.", "Data as at the end of December.",
"Data as at the end of December.", "Data as at the end of December.",
"Data as at the end of December.", "Including refugees.;Refers to foreign citizens.",
"Including refugees.;Refers to foreign citizens.", "Including refugees.;Refers to foreign citizens.",
"Including refugees.;Refers to foreign citizens.", "Data as at the end of December.",
"Data as at the end of December.", "Data as at the end of December.",
"Data as at the end of December.", "Including refugees.;Refers to foreign citizens.",
"Including refugees.;Refers to foreign citizens.", "Including refugees.;Refers to foreign citizens.",
"Including refugees.;Refers to foreign citizens.", NA, NA, NA,
NA, "Including refugees.;Refers to foreign citizens.", "Including refugees.;Refers to foreign citizens.",
"Including refugees.;Refers to foreign citizens.", "Including refugees.;Refers to foreign citizens.",
NA, NA, NA, NA, NA, NA, NA, NA, "Including refugees.", "Including refugees.",
"Including refugees.", "Including refugees.", "Data as at the end of December.",
"Data as at the end of December.", "Data as at the end of December.",
"Data as at the end of December.", "Including refugees.", "Including refugees.",
"Including refugees.", "Including refugees.", "Data as at the end of December.",
"Data as at the end of December.", "Data as at the end of December.",
"Data as at the end of December.", "Including refugees.", "Including refugees.",
"Including refugees.", "Including refugees.", NA, NA, NA, NA,
"Including refugees.", "Including refugees.", "Including refugees.",
"Including refugees.", NA, NA, NA, NA, NA, NA, NA, NA, "Including refugees.;Refers to foreign citizens.",
"Including refugees.;Refers to foreign citizens.", "Including refugees.;Refers to foreign citizens.",
"Including refugees.;Refers to foreign citizens.", "Including refugees.;Refers to foreign citizens.",
"Including refugees.;Refers to foreign citizens.", "Including refugees.;Refers to foreign citizens.",
"Including refugees.;Refers to foreign citizens.", "Including refugees.;Refers to foreign citizens.",
"Including refugees.;Refers to foreign citizens.", "Including refugees.;Refers to foreign citizens.",
"Including refugees.;Refers to foreign citizens.", "Including refugees.;Refers to foreign citizens.",
"Including refugees.;Refers to foreign citizens.", "Including refugees.;Refers to foreign citizens.",
"Including refugees.;Refers to foreign citizens.", NA, NA, NA,
NA, NA, NA, NA, "Data as at the end of December.", "Data as at the end of December.",
"Data as at the end of December.", "Data as at the end of December.",
NA, NA, NA, NA, "Data as at the end of December.", "Data as at the end of December.",
"Data as at the end of December.", "Data as at the end of December.",
NA, NA, NA, NA, NA, NA, "The figure of stateless persons includes persons covered by two separate Laws; Law on Stateless Persons dated 17 February 2004 and the Law on the Status of Those Former USSR Citizens who are not Citizens of Latvia or of Any Other State.",
NA, NA, NA, NA, NA, NA, NA, "With respect to persons under UNHCR\x92s statelessness mandate, this figure includes persons of concern covered by two separate Latvian laws. 169 persons fall under the Republic of Latvia\x92s Law on Stateless Persons of 17 February 2004. 216,682 of the persons fall under Latvia\x92s 25 April 1995 Law on the Status of those Former USSR Citizens who are not Citizens of Latvia or Any Other State (\x93Non-citizens\x94). In the specific context of Latvia, the \x93Non-citizens\x94 enjoy the right to reside in Latvia ex lege and a set of rights and obligations generally beyond the rights prescribed by the 1954 Convention relating to the Status of Stateless Persons, including protection from removal, and as such the \x93Non-citizens\x94 may currently be considered persons to whom the Convention does not apply in accordance with Article 1.2(ii).",
NA, "With respect to persons under UNHCR\x92s statelessness mandate, this figure includes persons of concern covered by two separate Latvian laws.",
"With respect to persons under UNHCR\x92s statelessness mandate, this figure includes persons of concern covered by two separate Latvian laws.",
"With respect to persons under UNHCR\x92s statelessness mandate, this figure includes persons of concern covered by two separate Latvian laws.",
NA, "Including refugees.", "Including refugees.", "Including refugees.",
"Including refugees.", "Data as at the end of December.", "Data as at the end of December.",
"Data as at the end of December.", "Data as at the end of December.",
"Including refugees.", "Including refugees.", "Including refugees.",
"Including refugees.", "Data as at the end of December.", "Data as at the end of December.",
"Data as at the end of December.", "Data as at the end of December.",
"Including refugees.", "Including refugees.", "Including refugees.",
"Including refugees.", NA, NA, NA, NA, "Including refugees.",
"Including refugees.", "Including refugees.", "Including refugees.",
NA, NA, NA, NA, NA, NA, NA, NA, "Including refugees.;Refers to foreign citizens.",
"Including refugees.;Refers to foreign citizens.", "Including refugees.;Refers to foreign citizens.",
"Including refugees.;Refers to foreign citizens.", "Including refugees.;Refers to foreign citizens.",
"Including refugees.;Refers to foreign citizens.", "Including refugees.;Refers to foreign citizens.",
"Including refugees.;Refers to foreign citizens.", "Including refugees.;Refers to foreign citizens.",
"Including refugees.;Refers to foreign citizens.", "Including refugees.;Refers to foreign citizens.",
"Including refugees.;Refers to foreign citizens.", NA, NA, NA,
"Including refugees.;Refers to foreign citizens.", "Including refugees.;Refers to foreign citizens.",
"Including refugees.;Refers to foreign citizens.", "Including refugees.;Refers to foreign citizens.",
NA, NA, NA, NA, NA, NA, NA, "Including refugees.", "Including refugees.",
"Including refugees.", "Including refugees.", "Data as at the end of December.",
"Data as at the end of December.", "Data as at the end of December.",
"Data as at the end of December.", "Including refugees.", "Including refugees.",
"Including refugees.", "Including refugees.", "Data as at the end of December.",
"Data as at the end of December.", "Data as at the end of December.",
"Data as at the end of December.", "Including refugees.", "Including refugees.",
"Including refugees.", "Including refugees.", NA, NA, NA, NA,
"Including refugees.", "Including refugees.", "Including refugees.",
"Including refugees.", NA, NA, NA, NA, NA, NA, NA, "Including refugees.;Refers to foreign citizens.",
"Including refugees.;Refers to foreign citizens.", "Including refugees.;Refers to foreign citizens.",
"Including refugees.;Refers to foreign citizens.", "Data as at the end of December.",
"Data as at the end of December.", "Data as at the end of December.",
"Data as at the end of December.", "Including refugees.;Refers to foreign citizens.",
"Including refugees.;Refers to foreign citizens.", "Including refugees.;Refers to foreign citizens.",
"Including refugees.;Refers to foreign citizens.", "Data as at the end of December.",
"Data as at the end of December.", "Data as at the end of December.",
"Data as at the end of December.", "Including refugees.;Refers to foreign citizens.",
"Including refugees.;Refers to foreign citizens.", "Including refugees.;Refers to foreign citizens.",
"Including refugees.;Refers to foreign citizens.", NA, NA, NA,
NA, "Including refugees.;Refers to foreign citizens.", "Including refugees.;Refers to foreign citizens.",
"Including refugees.;Refers to foreign citizens.", "Including refugees.;Refers to foreign citizens.",
NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, "Data as at the end of December.",
"Data as at the end of December.", "Data as at the end of December.",
NA, NA, "Data as at the end of December.", "Data as at the end of December.",
"Data as at the end of December.", "Data as at the end of December.",
NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA,
NA, NA, "Data as at the end of December.", "Data as at the end of December.",
"Data as at the end of December.", "Data as at the end of December.",
NA, NA, NA, NA, "Data as at the end of December.", "Data as at the end of December.",
"Data as at the end of December.", "Data as at the end of December.",
NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA,
NA, NA, NA, NA, NA, NA, NA, NA, "Data as at the end of December.",
"Data as at the end of December.", "Data as at the end of December.",
NA, NA, NA, NA, "Data as at the end of December.", "Data as at the end of December.",
"Data as at the end of December.", "Data as at the end of December.",
NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA,
NA, NA, NA, NA, "Including refugees.;Refers to foreign citizens.",
"Including refugees.;Refers to foreign citizens.", "Including refugees.;Refers to foreign citizens.",
"Including refugees.;Refers to foreign citizens.", "Including refugees.;Refers to foreign citizens.",
"Including refugees.;Refers to foreign citizens.", "Including refugees.;Refers to foreign citizens.",
"Including refugees.;Refers to foreign citizens.", "Data as at the end of December.",
"Data as at the end of December.", "Including refugees.;Refers to foreign citizens.",
"Including refugees.;Refers to foreign citizens.", "Including refugees.;Refers to foreign citizens.",
"Including refugees.;Refers to foreign citizens.", NA, NA, NA,
"Including refugees.;Refers to foreign citizens.", "Including refugees.;Refers to foreign citizens.",
"Including refugees.;Refers to foreign citizens.", "Including refugees.;Refers to foreign citizens.",
NA, NA, NA, NA, NA, NA, NA, "Including refugees.", "Including refugees.",
"Including refugees.", "Including refugees.", "Data as at the end of December.",
"Data as at the end of December.", "Data as at the end of December.",
"Data as at the end of December.", "Including refugees.", "Including refugees.",
"Including refugees.", "Including refugees.", "Data as at the end of December.",
"Data as at the end of December.", "Data as at the end of December.",
"Data as at the end of December.", "Including refugees.", "Including refugees.",
"Including refugees.", "Including refugees.", NA, NA, NA, "Including refugees.",
"Including refugees.", "Including refugees.", "Including refugees.",
NA, NA, NA, NA, NA, NA, NA, NA, "Including refugees.;Refers to foreign citizens.;Including Sabah and Sarawak.",
"Including refugees.;Refers to foreign citizens.;Including Sabah and Sarawak.",
"Including refugees.;Refers to foreign citizens.;Including Sabah and Sarawak.",
"Including refugees.;Refers to foreign citizens.;Including Sabah and Sarawak.",
"Data as at the end of December.", "Data as at the end of December.",
"Data as at the end of December.", "Data as at the end of December.",
"Including refugees.;Refers to foreign citizens.;Including Sabah and Sarawak.",
"Including refugees.;Refers to foreign citizens.;Including Sabah and Sarawak.",
"Including refugees.;Refers to foreign citizens.;Including Sabah and Sarawak.",
"Including refugees.;Refers to foreign citizens.;Including Sabah and Sarawak.",
"Data as at the end of December.", "Data as at the end of December.",
"Data as at the end of December.", "Data as at the end of December.",
"Including refugees.;Refers to foreign citizens.;Including Sabah and Sarawak.",
"Including refugees.;Refers to foreign citizens.;Including Sabah and Sarawak.",
"Including refugees.;Refers to foreign citizens.;Including Sabah and Sarawak.",
"Including refugees.;Refers to foreign citizens.;Including Sabah and Sarawak.",
NA, NA, NA, NA, "Including refugees.;Refers to foreign citizens.;Including Sabah and Sarawak.",
"Including refugees.;Refers to foreign citizens.;Including Sabah and Sarawak.",
"Including refugees.;Refers to foreign citizens.;Including Sabah and Sarawak.",
"Including refugees.;Refers to foreign citizens.;Including Sabah and Sarawak.",
NA, NA, NA, NA, NA, NA, NA, NA, "Refers to foreign citizens.",
"Refers to foreign citizens.", "Refers to foreign citizens.",
"Refers to foreign citizens.", "Refers to foreign citizens.",
"Refers to foreign citizens.", "Refers to foreign citizens.",
"Refers to foreign citizens.", "Refers to foreign citizens.",
"Refers to foreign citizens.", "Refers to foreign citizens.",
"Refers to foreign citizens.", "Refers to foreign citizens.",
"Refers to foreign citizens.", "Refers to foreign citizens.",
"Refers to foreign citizens.", "Including refugees.", "Including refugees.",
"Including refugees.", "Including refugees.", "Data as at the end of December.",
"Data as at the end of December.", "Data as at the end of December.",
"Including refugees.", "Including refugees.", "Including refugees.",
"Including refugees.", "Data as at the end of December.", "Data as at the end of December.",
"Data as at the end of December.", "Including refugees.", "Including refugees.",
"Including refugees.", "Including refugees.", NA, NA, NA, NA,
"Including refugees.", "Including refugees.", "Including refugees.",
"Including refugees.", NA, NA, NA, NA, NA, NA, NA, NA, NA, NA,
NA, NA, "Data as at the end of December.", "Data as at the end of December.",
"Data as at the end of December.", NA, NA, NA, NA, "Data as at the end of December.",
"Data as at the end of December.", "Data as at the end of December.",
NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA,
NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, "Including refugees.",
"Including refugees.", "Including refugees.", "Including refugees.",
"Including refugees.", "Including refugees.", "Including refugees.",
"Including refugees.", "Including refugees.", "Including refugees.",
"Including refugees.", "Including refugees.", "Including refugees.",
"Including refugees.", "Including refugees.", "Including refugees.",
"Including refugees.;Refers to foreign citizens.", "Including refugees.;Refers to foreign citizens.",
"Including refugees.;Refers to foreign citizens.", "Including refugees.;Refers to foreign citizens.",
"Data as at the end of December.", "Data as at the end of December.",
"Data as at the end of December.", "Data as at the end of December.",
"Including refugees.;Refers to foreign citizens.", "Including refugees.;Refers to foreign citizens.",
"Including refugees.;Refers to foreign citizens.", "Including refugees.;Refers to foreign citizens.",
"Data as at the end of December.", "Data as at the end of December.",
"Data as at the end of December.", "Data as at the end of December.",
"Including refugees.;Refers to foreign citizens.", "Including refugees.;Refers to foreign citizens.",
"Including refugees.;Refers to foreign citizens.", "Including refugees.;Refers to foreign citizens.",
NA, NA, NA, "Including refugees.;Refers to foreign citizens.",
"Including refugees.;Refers to foreign citizens.", "Including refugees.;Refers to foreign citizens.",
"Including refugees.;Refers to foreign citizens.", NA, NA, NA,
NA, NA, NA, "Refers to foreign citizens.;Including Agalega, Rodrigues and Saint Brandon.",
"Refers to foreign citizens.;Including Agalega, Rodrigues and Saint Brandon.",
"Refers to foreign citizens.;Including Agalega, Rodrigues and Saint Brandon.",
"Refers to foreign citizens.;Including Agalega, Rodrigues and Saint Brandon.",
"Refers to foreign citizens.;Including Agalega, Rodrigues and Saint Brandon.",
"Refers to foreign citizens.;Including Agalega, Rodrigues and Saint Brandon.",
"Refers to foreign citizens.;Including Agalega, Rodrigues and Saint Brandon.",
"Refers to foreign citizens.;Including Agalega, Rodrigues and Saint Brandon.",
"Refers to foreign citizens.;Including Agalega, Rodrigues and Saint Brandon.",
"Refers to foreign citizens.;Including Agalega, Rodrigues and Saint Brandon.",
"Refers to foreign citizens.;Including Agalega, Rodrigues and Saint Brandon.",
"Refers to foreign citizens.;Including Agalega, Rodrigues and Saint Brandon.",
"Refers to foreign citizens.;Including Agalega, Rodrigues and Saint Brandon.",
"Refers to foreign citizens.;Including Agalega, Rodrigues and Saint Brandon.",
"Refers to foreign citizens.;Including Agalega, Rodrigues and Saint Brandon.",
"Refers to foreign citizens.;Including Agalega, Rodrigues and Saint Brandon.",
NA, NA, NA, NA, NA, "Including refugees.", "Including refugees.",
"Including refugees.", "Including refugees.", "Including refugees.",
"Including refugees.", "Including refugees.", "Including refugees.",
"Including refugees.", "Including refugees.", "Including refugees.",
"Including refugees.", "Including refugees.", "Including refugees.",
"Including refugees.", "Including refugees.", "Including refugees.",
"Including refugees.", "Including refugees.", "Including refugees.",
"Data as at the end of December.", "Data as at the end of December.",
"Data as at the end of December.", "Including refugees.", "Including refugees.",
"Including refugees.", "Including refugees.", "Data as at the end of December.",
"Data as at the end of December.", "Data as at the end of December.",
"Data as at the end of December.", "Including refugees.", "Including refugees.",
"Including refugees.", "Including refugees.", NA, NA, NA, "Including refugees.",
"Including refugees.", "Including refugees.", "Including refugees.",
NA, NA, "Including Venezuelans displaced abroad.", NA, NA, NA,
NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA,
NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, "Data as at the end of December.",
"Data as at the end of December.", NA, NA, NA, NA, NA, NA, NA,
NA, "Data is as of end-2021.", "Data is as of end-2021.", "Including refugees.;Refers to foreign citizens.",
"Including refugees.;Refers to foreign citizens.", "Including refugees.;Refers to foreign citizens.",
"Including refugees.;Refers to foreign citizens.", "Data as at the end of December.",
"Data as at the end of December.", "Data as at the end of December.",
"Including refugees.;Refers to foreign citizens.", "Including refugees.;Refers to foreign citizens.",
"Including refugees.;Refers to foreign citizens.", "Including refugees.;Refers to foreign citizens.",
"Data as at the end of December.", "Data as at the end of December.",
"Data as at the end of December.", "Data as at the end of December.",
"Including refugees.;Refers to foreign citizens.", "Including refugees.;Refers to foreign citizens.",
"Including refugees.;Refers to foreign citizens.", "Including refugees.;Refers to foreign citizens.",
NA, NA, NA, NA, "Including refugees.;Refers to foreign citizens.",
"Including refugees.;Refers to foreign citizens.", "Including refugees.;Refers to foreign citizens.",
"Including refugees.;Refers to foreign citizens.", NA, NA, NA,
NA, NA, NA, NA, NA, NA, NA, NA, NA, "Data as at the end of December.",
"Data as at the end of December.", "Data as at the end of December.",
"Data as at the end of December.", NA, NA, NA, NA, NA, NA, NA,
NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA,
NA, "Data as at the end of December.", "Data as at the end of December.",
NA, NA, NA, NA, "Including refugees.;Refers to foreign citizens.",
"Including refugees.;Refers to foreign citizens.", "Including refugees.;Refers to foreign citizens.",
"Including refugees.;Refers to foreign citizens.", "Data as at the end of December.",
"Data as at the end of December.", "Data as at the end of December.",
"Data as at the end of December.", "Including refugees.;Refers to foreign citizens.",
"Including refugees.;Refers to foreign citizens.", "Including refugees.;Refers to foreign citizens.",
"Including refugees.;Refers to foreign citizens.", "Data as at the end of December.",
"Data as at the end of December.", "Data as at the end of December.",
"Including refugees.;Refers to foreign citizens.", "Including refugees.;Refers to foreign citizens.",
"Including refugees.;Refers to foreign citizens.", "Including refugees.;Refers to foreign citizens.",
NA, NA, NA, "Including refugees.;Refers to foreign citizens.",
"Including refugees.;Refers to foreign citizens.", "Including refugees.;Refers to foreign citizens.",
"Including refugees.;Refers to foreign citizens.", NA, NA, NA,
NA, NA, NA, "Including refugees.", "Including refugees.", "Including refugees.",
"Including refugees.", "Data as at the end of December.", "Data as at the end of December.",
"Data as at the end of December.", "Data as at the end of December.",
"Including refugees.", "Including refugees.", "Including refugees.",
"Including refugees.", "Data as at the end of December.", "Data as at the end of December.",
"Data as at the end of December.", "Data as at the end of December.",
"Including refugees.", "Including refugees.", "Including refugees.",
"Including refugees.", NA, NA, NA, NA, "Including refugees.",
"Including refugees.", "Including refugees.", "Including refugees.",
NA, NA, NA, NA, NA, NA, NA, NA, "Refers to foreign citizens.",
"Refers to foreign citizens.", "Refers to foreign citizens.",
"Refers to foreign citizens.", "Data as at the end of December.",
"Data as at the end of December.", "Refers to foreign citizens.",
"Refers to foreign citizens.", "Refers to foreign citizens.",
"Refers to foreign citizens.", "Data as at the end of December.",
"Data as at the end of December.", "Refers to foreign citizens.",
"Refers to foreign citizens.", "Refers to foreign citizens.",
"Refers to foreign citizens.", "Stateless persons population refers to persons without citizeship in Rakhine State only.",
NA, NA, "Stateless persons population refers to persons without citizeship in Rakhine State only.",
NA, "Refers to foreign citizens.", "Refers to foreign citizens.",
"Refers to foreign citizens.", "Refers to foreign citizens.",
"The estimated figure of persons of concern under the statelessness mandate relates to stateless persons of Rohingya ethnicity in Rakhine State and also includes stateless IDPs in Myanmar. The number of persons of undetermined nationality residing in other states or regions in Myanmar is not currently available. The number of stateless persons remaining in Rakhine State following violence in 2016 and 2017 and large scale departures to Bangladesh is based on detailed estimates for each village tract made by UNHCR, other UN agencies and NGOs in early 2018, which concluded that between 532,000 to 600,000 Rohingya remained in Rakhine State (Excludes an estimated 141907 of those Rohingya who have been internally displaced). For the purposes of this report, the higher range of this estimate has been used.",
NA, NA, NA, "Including refugees.", "Including refugees.", "Including refugees.",
"Including refugees.", "Data as at the end of December.", "Data as at the end of December.",
"Data as at the end of December.", "Data as at the end of December.",
"Including refugees.", "Including refugees.", "Including refugees.",
"Including refugees.", "Data as at the end of December.", "Data as at the end of December.",
"Data as at the end of December.", "Data as at the end of December.",
"Including refugees.", "Including refugees.", "Including refugees.",
"Including refugees.", NA, NA, NA, NA, "Including refugees.",
"Including refugees.", "Including refugees.", "Including refugees.",
NA, NA, NA, NA, NA, NA, NA, NA, "Including refugees.;Refers to foreign citizens.",
"Including refugees.;Refers to foreign citizens.", "Including refugees.;Refers to foreign citizens.",
"Including refugees.;Refers to foreign citizens.", "Including refugees.;Refers to foreign citizens.",
"Including refugees.;Refers to foreign citizens.", "Data as at the end of December.",
NA, NA, "Including refugees.;Refers to foreign citizens.", "Including refugees.;Refers to foreign citizens.",
NA, NA, NA, NA, NA, NA, NA, "Including refugees.", "Including refugees.",
"Including refugees.", "Including refugees.", "Data as at the end of December.",
"Data as at the end of December.", "Data as at the end of December.",
"Data as at the end of December.", "Including refugees.", "Including refugees.",
"Including refugees.", "Including refugees.", "Data as at the end of December.",
"Data as at the end of December.", "Data as at the end of December.",
"Data as at the end of December.", "Including refugees.", "Including refugees.",
"Including refugees.", "Including refugees.", NA, NA, "Various studies estimate that a large number of individuals lack citizenship certificates in Nepal. While these individuals are not all necessarily stateless, UNHCR has been working closely with the Government of Nepal and partners to address this situation.",
NA, "Including refugees.", "Including refugees.", "Including refugees.",
"Including refugees.", NA, NA, "Excludes 351 stateless Rohingya refugees from Myanmar. Separately, various studies estimate that a significant number of individuals originally from Nepal lack citizenship certificates. While these individuals originally from Nepal are not all necessarily stateless, UNHCR has been working closely with the Government of Nepal and partners to address this situation.",
NA, NA, NA, NA, NA, NA, NA, NA, NA, "Data as at the end of December.",
"Data as at the end of December.", "Data as at the end of December.",
"Data as at the end of December.", NA, NA, NA, NA, "Data as at the end of December.",
"Data as at the end of December.", "Data as at the end of December.",
"Data as at the end of December.", NA, NA, NA, NA, "Data relates to the end of 2014.",
NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, "Number of refugees is based on the data received from the government as of start 2022.",
"Number of refugees is based on the data received from the government as of start 2022.",
"Number of refugees is based on the data received from the government as of start 2022.",
"Number of refugees is based on the data received from the government as of start 2022.",
NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA,
NA, NA, NA, NA, "Data as at the end of December.", "Data as at the end of December.",
"Data as at the end of December.", "Data as at the end of December.",
NA, NA, NA, NA, "Data as at the end of December.", "Data as at the end of December.",
"Data as at the end of December.", "Data as at the end of December.",
NA, NA, NA, NA, "Data relates to the end of 2014.", NA, NA, NA,
NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, "Including refugees.",
"Including refugees.", "Including refugees.", "Including refugees.",
"Data as at the end of December.", "Data as at the end of December.",
"Data as at the end of December.", "Including refugees.", "Including refugees.",
"Including refugees.", "Including refugees.", "Data as at the end of December.",
"Data as at the end of December.", "Data as at the end of December.",
"Including refugees.", "Including refugees.", "Including refugees.",
"Including refugees.", NA, NA, NA, NA, "Including refugees.",
"Including refugees.", "Including refugees.", "Including refugees.",
NA, NA, "Including Venezuelans displaced abroad.", NA, NA, NA,
NA, NA, "Including refugees.", "Including refugees.", "Including refugees.",
"Including refugees.", "Data as at the end of December.", "Data as at the end of December.",
"Data as at the end of December.", "Data as at the end of December.",
"Including refugees.", "Including refugees.", "Including refugees.",
"Including refugees.", "Data as at the end of December.", "Data as at the end of December.",
"Data as at the end of December.", "Data as at the end of December.",
"Including refugees.", "Including refugees.", "Including refugees.",
"Including refugees.", NA, NA, NA, NA, "Including refugees.",
"Including refugees.", "Including refugees.", "Including refugees.",
NA, NA, NA, NA, NA, NA, NA, NA, "Including refugees.;Refers to foreign citizens.",
"Including refugees.;Refers to foreign citizens.", "Including refugees.;Refers to foreign citizens.",
"Including refugees.;Refers to foreign citizens.", "Data as at the end of December.",
"Data as at the end of December.", "Data as at the end of December.",
"Data as at the end of December.", "Including refugees.;Refers to foreign citizens.",
"Including refugees.;Refers to foreign citizens.", "Including refugees.;Refers to foreign citizens.",
"Including refugees.;Refers to foreign citizens.", "Data as at the end of December.",
"Data as at the end of December.", "Data as at the end of December.",
"Data as at the end of December.", "Including refugees.;Refers to foreign citizens.",
"Including refugees.;Refers to foreign citizens.", "Including refugees.;Refers to foreign citizens.",
"Including refugees.;Refers to foreign citizens.", NA, NA, NA,
NA, "Including refugees.;Refers to foreign citizens.", "Including refugees.;Refers to foreign citizens.",
"Including refugees.;Refers to foreign citizens.", "Including refugees.;Refers to foreign citizens.",
NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA,
NA, NA, NA, NA, "Data as at the end of December.", "Data as at the end of December.",
"Data as at the end of December.", "Data as at the end of December.",
NA, NA, NA, NA, "Data as at the end of December.", "Data as at the end of December.",
"Data as at the end of December.", "Data as at the end of December.",
NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA,
NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, "Including Svalbard and Jan Mayen Islands.",
"Including Svalbard and Jan Mayen Islands.", "Including Svalbard and Jan Mayen Islands.",
"Including Svalbard and Jan Mayen Islands.", "Data as at the end of December.",
"Data as at the end of December.", "Data as at the end of December.",
"Including Svalbard and Jan Mayen Islands.", "Including Svalbard and Jan Mayen Islands.",
"Including Svalbard and Jan Mayen Islands.", "Including Svalbard and Jan Mayen Islands.",
"Data as at the end of December.", "Data as at the end of December.",
"Data as at the end of December.", "Data as at the end of December.",
"Including Svalbard and Jan Mayen Islands.", "Including Svalbard and Jan Mayen Islands.",
"Including Svalbard and Jan Mayen Islands.", "Including Svalbard and Jan Mayen Islands.",
"Data relates to the end of 2014.", NA, NA, NA, "Including Svalbard and Jan Mayen Islands.",
"Including Svalbard and Jan Mayen Islands.", "Including Svalbard and Jan Mayen Islands.",
"Including Svalbard and Jan Mayen Islands.", NA, NA, NA, NA,
NA, NA, NA, NA, "Including refugees.;Refers to foreign citizens.",
"Including refugees.;Refers to foreign citizens.", "Including refugees.;Refers to foreign citizens.",
"Including refugees.;Refers to foreign citizens.", "Data as at the end of December.",
"Data as at the end of December.", "Data as at the end of December.",
"Including refugees.;Refers to foreign citizens.", "Including refugees.;Refers to foreign citizens.",
"Including refugees.;Refers to foreign citizens.", "Including refugees.;Refers to foreign citizens.",
"Data as at the end of December.", "Data as at the end of December.",
"Data as at the end of December.", "Including refugees.;Refers to foreign citizens.",
"Including refugees.;Refers to foreign citizens.", "Including refugees.;Refers to foreign citizens.",
"Including refugees.;Refers to foreign citizens.", NA, NA, NA,
"Including refugees.;Refers to foreign citizens.", "Including refugees.;Refers to foreign citizens.",
"Including refugees.;Refers to foreign citizens.", "Including refugees.;Refers to foreign citizens.",
NA, NA, NA, NA, NA, NA, "Including refugees.", "Including refugees.",
"Including refugees.", "Including refugees.", "Data as at the end of December.",
"Data as at the end of December.", "Data as at the end of December.",
"Data as at the end of December.", "Including refugees.", "Including refugees.",
"Including refugees.", "Including refugees.", "Data as at the end of December.",
"Data as at the end of December.", "Data as at the end of December.",
"Data as at the end of December.", "Including refugees.", "Including refugees.",
"Including refugees.", "Including refugees.", NA, NA, NA, NA,
"Including refugees.", "Including refugees.", "Including refugees.",
"Including refugees.", NA, NA, "Excludes 47 stateless persons of Rohingya ethnicity who are also counted as refugees or asylum-seekers from Myanmar, mainly from Rakhine State. UNHCR\x92s statistical reporting generally follows a methodology that reports only one legal status for each person of concern. However, due to the size of the stateless Rohingya population displaced from Myanmar, UNHCR considers it important to reflect the dual status of this population group as both displaced and stateless. This approach is being used for Pakistan for the first time in 2020.",
NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA,
NA, NA, NA, "Including refugees.", "Including refugees.", "Including refugees.",
"Including refugees.", "Data as at the end of December.", "Data as at the end of December.",
"Data as at the end of December.", "Data as at the end of December.",
"Including refugees.", "Including refugees.", "Including refugees.",
"Including refugees.", "Data as at the end of December.", "Data as at the end of December.",
"Data as at the end of December.", "Data as at the end of December.",
"Including refugees.", "Including refugees.", "Including refugees.",
"Including refugees.", NA, NA, NA, NA, "Including refugees.",
"Including refugees.", "Including refugees.", "Including refugees.",
NA, NA, "Including Venezuelans displaced abroad.", NA, NA, NA,
NA, NA, "Including refugees.;Refers to foreign citizens.", "Including refugees.;Refers to foreign citizens.",
"Including refugees.;Refers to foreign citizens.", "Including refugees.;Refers to foreign citizens.",
"Data as at the end of December.", "Data as at the end of December.",
"Data as at the end of December.", "Data as at the end of December.",
"Including refugees.;Refers to foreign citizens.", "Including refugees.;Refers to foreign citizens.",
"Including refugees.;Refers to foreign citizens.", "Including refugees.;Refers to foreign citizens.",
"Data as at the end of December.", "Data as at the end of December.",
"Data as at the end of December.", "Including refugees.;Refers to foreign citizens.",
"Including refugees.;Refers to foreign citizens.", "Including refugees.;Refers to foreign citizens.",
"Including refugees.;Refers to foreign citizens.", NA, NA, NA,
"Including refugees.;Refers to foreign citizens.", "Including refugees.;Refers to foreign citizens.",
"Including refugees.;Refers to foreign citizens.", "Including refugees.;Refers to foreign citizens.",
NA, NA, NA, NA, NA, NA, NA, "Including refugees.", "Including refugees.",
"Including refugees.", "Including refugees.", "Data as at the end of December.",
"Data as at the end of December.", "Data as at the end of December.",
"Including refugees.", "Including refugees.", "Including refugees.",
"Including refugees.", "Data as at the end of December.", "Data as at the end of December.",
"Data as at the end of December.", "Including refugees.", "Including refugees.",
"Including refugees.", "Including refugees.", NA, NA, NA, "Including refugees.",
"Including refugees.", "Including refugees.", "Including refugees.",
NA, NA, "Including Venezuelans displaced abroad.", NA, NA, NA,
NA, NA, "Including refugees.", "Including refugees.", "Including refugees.",
"Including refugees.", "Data as at the end of December.", "Data as at the end of December.",
"Data as at the end of December.", "Data as at the end of December.",
"Including refugees.", "Including refugees.", "Including refugees.",
"Including refugees.", "Data as at the end of December.", "Data as at the end of December.",
"Data as at the end of December.", "Data as at the end of December.",
"Including refugees.", "Including refugees.", "Including refugees.",
"Including refugees.", NA, NA, NA, "Including refugees.", "Including refugees.",
"Including refugees.", "Including refugees.", NA, NA, "Including Venezuelans displaced abroad.",
NA, NA, NA, NA, NA, "Including refugees.;Refers to foreign citizens.",
"Including refugees.;Refers to foreign citizens.", "Including refugees.;Refers to foreign citizens.",
"Including refugees.;Refers to foreign citizens.", "Data as at the end of December.",
"Data as at the end of December.", "Data as at the end of December.",
"Data as at the end of December.", "Including refugees.;Refers to foreign citizens.",
"Including refugees.;Refers to foreign citizens.", "Including refugees.;Refers to foreign citizens.",
"Including refugees.;Refers to foreign citizens.", "Data as at the end of December.",
"Data as at the end of December.", "Data as at the end of December.",
"Data as at the end of December.", "Including refugees.;Refers to foreign citizens.",
"Including refugees.;Refers to foreign citizens.", "Including refugees.;Refers to foreign citizens.",
"Including refugees.;Refers to foreign citizens.", NA, NA, NA,
NA, "Including refugees.;Refers to foreign citizens.", "Including refugees.;Refers to foreign citizens.",
"Including refugees.;Refers to foreign citizens.", "Including refugees.;Refers to foreign citizens.",
"The updated figure is based on improved information concerning persons of Indonesian descent who have acquired nationality.",
"The updated figure is based on improved information concerning persons of Indonesian descent who have acquired nationality.",
"The updated figure is based on improved information concerning persons of Indonesian descent who have acquired nationality.",
NA, "The updated figure is based on improved information concerning persons of Indonesian descent who have acquired nationality.",
"The updated figure is based on improved information concerning persons of Indonesian descent who have acquired nationality.",
"The updated figure is based on improved information concerning persons of Indonesian descent who have acquired nationality.",
"The updated figure is based on improved information concerning persons of Indonesian descent who have acquired nationality.",
NA, NA, NA, NA, "Data as at the end of December.", "Data as at the end of December.",
"Data as at the end of December.", "Data as at the end of December.",
NA, NA, NA, NA, "Data as at the end of December.", "Data as at the end of December.",
"Data as at the end of December.", "Data as at the end of December.",
NA, NA, NA, NA, "Data relates to the end of 2014.", NA, NA, NA,
NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA,
"Data as at the end of December.", "Data as at the end of December.",
NA, NA, NA, NA, "Data as at the end of December.", "Data as at the end of December.",
"Data as at the end of December.", "Data as at the end of December.",
NA, NA, NA, NA, "Data relates to the end of 2014.", NA, NA, NA,
NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA,
NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, "Refers to foreign citizens.",
"Refers to foreign citizens.", "Refers to foreign citizens.",
"Refers to foreign citizens.", "Data as at the end of December.",
"Data as at the end of December.", "Data as at the end of December.",
"Refers to foreign citizens.", "Refers to foreign citizens.",
"Refers to foreign citizens.", "Refers to foreign citizens.",
"Data as at the end of December.", "Data as at the end of December.",
"Data as at the end of December.", "Data as at the end of December.",
"Refers to foreign citizens.", "Refers to foreign citizens.",
"Refers to foreign citizens.", "Refers to foreign citizens.",
NA, NA, NA, NA, "Refers to foreign citizens.", "Refers to foreign citizens.",
"Refers to foreign citizens.", "Refers to foreign citizens.",
NA, NA, NA, NA, NA, NA, NA, NA, "Including refugees.;Refers to foreign citizens.",
"Including refugees.;Refers to foreign citizens.", "Including refugees.;Refers to foreign citizens.",
"Including refugees.;Refers to foreign citizens.", "Data as at the end of December.",
"Data as at the end of December.", "Data as at the end of December.",
"Including refugees.;Refers to foreign citizens.", "Including refugees.;Refers to foreign citizens.",
"Including refugees.;Refers to foreign citizens.", "Including refugees.;Refers to foreign citizens.",
"Data as at the end of December.", "Data as at the end of December.",
"Data as at the end of December.", "Data as at the end of December.",
"Including refugees.;Refers to foreign citizens.", "Including refugees.;Refers to foreign citizens.",
"Including refugees.;Refers to foreign citizens.", "Including refugees.;Refers to foreign citizens.",
NA, NA, NA, NA, "Including refugees.;Refers to foreign citizens.",
"Including refugees.;Refers to foreign citizens.", "Including refugees.;Refers to foreign citizens.",
"Including refugees.;Refers to foreign citizens.", NA, NA, NA,
NA, "Data is as of end-2021.", "Data is as of end-2021.", "Data is as of end-2021.",
"Data is as of end-2021.", "Including the Transnistria region.",
"Including the Transnistria region.", "Including the Transnistria region.",
"Including the Transnistria region.", "Data as at the end of December.",
"Data as at the end of December.", "Data as at the end of December.",
"Data as at the end of December.", "Including the Transnistria region.",
"Including the Transnistria region.", "Including the Transnistria region.",
"Including the Transnistria region.", "Data as at the end of December.",
"Data as at the end of December.", "Data as at the end of December.",
"Data as at the end of December.", "Including the Transnistria region.",
"Including the Transnistria region.", "Including the Transnistria region.",
"Including the Transnistria region.", NA, NA, NA, NA, "Including the Transnistria region.",
"Including the Transnistria region.", "Including the Transnistria region.",
"Including the Transnistria region.", NA, NA, NA, NA, NA, NA,
NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA,
NA, NA, NA, NA, NA, NA, "Data as at the end of December.", "Data as at the end of December.",
"Data as at the end of December.", "Data as at the end of December.",
NA, NA, NA, NA, "Data as at the end of December.", "Data as at the end of December.",
"Data as at the end of December.", "Data as at the end of December.",
NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA,
NA, NA, NA, NA, NA, NA, NA, NA, "Data as at the end of December.",
"Data as at the end of December.", "Data as at the end of December.",
"Data as at the end of December.", NA, NA, NA, NA, "Data as at the end of December.",
"Data as at the end of December.", "Data as at the end of December.",
"Data as at the end of December.", NA, NA, NA, NA, NA, NA, "Stateless persons refers to census figure from 2010 adjusted to reflect the number of people who acquired nationality since 2011.",
NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, "Including refugees.",
"Including refugees.", "Including refugees.", "Including refugees.",
"Data as at the end of December.", "Data as at the end of December.",
"Data as at the end of December.", "Data as at the end of December.",
"Including refugees.", "Including refugees.", "Including refugees.",
"Including refugees.", "Data as at the end of December.", "Data as at the end of December.",
"Data as at the end of December.", "Data as at the end of December.",
"Including refugees.", "Including refugees.", "Including refugees.",
"Including refugees.", NA, NA, NA, NA, "Including refugees.",
"Including refugees.", "Including refugees.", "Including refugees.",
NA, NA, NA, NA, NA, NA, NA, NA, "Refers to foreign citizens.;Including Ascension and Tristan da Cunha. For statistical purposes, the data for United Kingdom do not include this area.",
"Refers to foreign citizens.;Including Ascension and Tristan da Cunha. For statistical purposes, the data for United Kingdom do not include this area.",
"Refers to foreign citizens.;Including Ascension and Tristan da Cunha. For statistical purposes, the data for United Kingdom do not include this area.",
"Refers to foreign citizens.;Including Ascension and Tristan da Cunha. For statistical purposes, the data for United Kingdom do not include this area.",
"Refers to foreign citizens.;Including Ascension and Tristan da Cunha. For statistical purposes, the data for United Kingdom do not include this area.",
"Refers to foreign citizens.;Including Ascension and Tristan da Cunha. For statistical purposes, the data for United Kingdom do not include this area.",
"Refers to foreign citizens.;Including Ascension and Tristan da Cunha. For statistical purposes, the data for United Kingdom do not include this area.",
"Refers to foreign citizens.;Including Ascension and Tristan da Cunha. For statistical purposes, the data for United Kingdom do not include this area.",
"Including refugees.", "Including refugees.", "Including refugees.",
"Including refugees.", "Including refugees.", "Including refugees.",
NA, NA, "Including refugees.", "Including refugees.", NA, NA,
NA, NA, "Including refugees.", "Including refugees.", "Including refugees.",
"Including refugees.", "Including refugees.", "Including refugees.",
"Including refugees.", "Including refugees.", "Data as at the end of December.",
"Data as at the end of December.", "Data as at the end of December.",
"Including refugees.", "Including refugees.", "Including refugees.",
"Including refugees.", NA, NA, NA, NA, "Including refugees.",
"Including refugees.", "Including refugees.", "Including refugees.",
NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, "Including refugees.",
"Including refugees.", "Including refugees.", "Including refugees.",
"Including refugees.", "Including refugees.", "Including refugees.",
"Including refugees.", "Including refugees.", "Including refugees.",
"Including refugees.", "Including refugees.", "Including refugees.",
"Including refugees.", "Including refugees.", "Including refugees.",
"Including Venezuelans displaced abroad.", NA, NA, NA, "Including refugees.",
"Including refugees.", "Including refugees.", "Including refugees.",
"Including refugees.", "Including refugees.", "Including refugees.",
"Including refugees.", "Including refugees.", "Including refugees.",
"Including refugees.", "Including refugees.", NA, NA, "Including refugees.",
"Including refugees.", "Including refugees.", "Including refugees.",
NA, NA, "Refers to foreign citizens.", "Refers to foreign citizens.",
"Refers to foreign citizens.", "Refers to foreign citizens.",
"Refers to foreign citizens.", "Refers to foreign citizens.",
"Refers to foreign citizens.", "Refers to foreign citizens.",
"Refers to foreign citizens.", "Refers to foreign citizens.",
"Refers to foreign citizens.", "Refers to foreign citizens.",
"Refers to foreign citizens.", "Refers to foreign citizens.",
"Refers to foreign citizens.", "Refers to foreign citizens.",
"Refers to foreign citizens.", "Refers to foreign citizens.",
"Refers to foreign citizens.", "Refers to foreign citizens.",
"Refers to foreign citizens.", "Refers to foreign citizens.",
"Refers to foreign citizens.", "Refers to foreign citizens.",
"Including refugees. Refers to foreign citizens.", "Including refugees. Refers to foreign citizens.",
"Including refugees. Refers to foreign citizens.", "Including refugees. Refers to foreign citizens.",
"Data as at the end of December.", "Data as at the end of December.",
"Data as at the end of December.", "Data as at the end of December.",
"Including refugees. Refers to foreign citizens.", "Including refugees. Refers to foreign citizens.",
"Including refugees. Refers to foreign citizens.", "Including refugees. Refers to foreign citizens.",
"Data as at the end of December.", "Data as at the end of December.",
"Data as at the end of December.", NA, "Including refugees. Refers to foreign citizens.",
"Including refugees. Refers to foreign citizens.", "Including refugees. Refers to foreign citizens.",
"Including refugees. Refers to foreign citizens.", NA, NA, NA,
NA, "Including refugees. Refers to foreign citizens.", "Including refugees. Refers to foreign citizens.",
"Including refugees. Refers to foreign citizens.", "Including refugees. Refers to foreign citizens.",
NA, NA, "UNHCR is verifying the number of stateless persons with the Government of Saudi Arabia.",
NA, NA, NA, NA, NA, "Including refugees.", "Including refugees.",
"Including refugees.", "Including refugees.", "Data as at the end of December.",
"Data as at the end of December.", "Data as at the end of December.",
"Data as at the end of December.", "Including refugees.", "Including refugees.",
"Including refugees.", "Including refugees.", "Data as at the end of December.",
"Data as at the end of December.", "Data as at the end of December.",
"Data as at the end of December.", "Including refugees.", "Including refugees.",
"Including refugees.", "Including refugees.", NA, NA, NA, "Including refugees.",
"Including refugees.", "Including refugees.", "Including refugees.",
NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, "Including Kosovo.",
"Including Kosovo.", "Including Kosovo.", "Including Kosovo.",
"Including Kosovo.;Data as at the end of December.", "Including Kosovo.;Data as at the end of December.",
"Including Kosovo.;Data as at the end of December.", "Including Kosovo.;Data as at the end of December.",
"Including Kosovo.", "Including Kosovo.", "Including Kosovo.",
"Including Kosovo.", "Including Kosovo.;Data as at the end of December.",
"Including Kosovo.;Data as at the end of December.", "Including Kosovo.;Data as at the end of December.",
"Including Kosovo.;Data as at the end of December.", "Including Kosovo.",
"Including Kosovo.", "Including Kosovo.", "Including Kosovo.",
"Including Kosovo.", "Including Kosovo.", "Including Kosovo.",
"Including Kosovo.", "Including Kosovo.", "Including Kosovo.",
"Including Kosovo.", "Including Kosovo.", "Including Kosovo.",
"Including Kosovo.", "Including Kosovo.", "Including Kosovo.",
NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA,
NA, NA, NA, NA, NA, NA, "Including refugees.", "Including refugees.",
"Including refugees.", "Including refugees.", "Data as at the end of December.",
"Data as at the end of December.", "Data as at the end of December.",
"Data as at the end of December.", "Including refugees.", "Including refugees.",
"Including refugees.", "Including refugees.", "Data as at the end of December.",
"Data as at the end of December.", "Data as at the end of December.",
"Data as at the end of December.", "Including refugees.", "Including refugees.",
"Including refugees.", "Including refugees.", NA, NA, NA, NA,
NA, NA, "Including refugees.", "Including refugees.", "Including refugees.",
"Including refugees.", NA, NA, NA, NA, NA, NA, NA, NA, NA, "Data as at the end of December.",
"Data as at the end of December.", "Data as at the end of December.",
NA, NA, NA, NA, "Data as at the end of December.", "Data as at the end of December.",
NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, "Including refugees.",
"Including refugees.", "Including refugees.", "Including refugees.",
"Data as at the end of December.", "Data as at the end of December.",
"Data as at the end of December.", "Including refugees.", "Including refugees.",
NA, NA, NA, "Including refugees.", "Including refugees.", NA,
NA, NA, NA, NA, NA, NA, NA, NA, NA, "Data as at the end of December.",
"Data as at the end of December.", "Data as at the end of December.",
NA, NA, NA, NA, "Data as at the end of December.", "Data as at the end of December.",
"Data as at the end of December.", "Data as at the end of December.",
NA, NA, NA, NA, "Data relates to the end of 2014.", NA, NA, NA,
NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA,
"Data as at the end of December.", "Data as at the end of December.",
"Data as at the end of December.", "Data as at the end of December.",
NA, NA, NA, NA, "Data as at the end of December.", "Data as at the end of December.",
"Data as at the end of December.", "Data as at the end of December.",
NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA,
NA, NA, NA, NA, NA, NA, NA, "Including refugees.", "Including refugees.",
"Including refugees.", "Including refugees.", "Including refugees.",
"Including refugees.", "Including refugees.", "Including refugees.",
"Including refugees.", "Including refugees.", "Including refugees.",
"Including refugees.", NA, NA, NA, NA, NA, NA, "Including refugees.",
"Including refugees.", "Including refugees.", "Including refugees.",
"Estimate.;Including refugees.", "Estimate.;Including refugees.",
"Estimate.;Including refugees.", "Estimate.;Including refugees.",
"Data as at the end of December.", "Data as at the end of December.",
"Data as at the end of December.", "Data as at the end of December.",
"Estimate.;Including refugees.", "Estimate.;Including refugees.",
"Estimate.;Including refugees.", "Estimate.;Including refugees.",
"Data as at the end of December.", "Data as at the end of December.",
"Data as at the end of December.", "Data as at the end of December.",
"Estimate.;Including refugees.", "Estimate.;Including refugees.",
"Estimate.;Including refugees.", "Estimate.;Including refugees.",
NA, NA, NA, NA, "Estimate.;Including refugees.", "Estimate.;Including refugees.",
"Estimate.;Including refugees.", "Estimate.;Including refugees.",
NA, NA, NA, NA, NA, NA, NA, NA, "Including refugees.", "Including refugees.",
"Including refugees.", "Including refugees.", "Data as at the end of December.",
"Data as at the end of December.", "Data as at the end of December.",
"Data as at the end of December.", "Including refugees.", "Including refugees.",
"Including refugees.", "Including refugees.", "Data as at the end of December.",
"Data as at the end of December.", "Data as at the end of December.",
"Data as at the end of December.", "Including refugees.", "Including refugees.",
"Including refugees.", "Including refugees.", NA, NA, NA, "Including refugees.",
"Including refugees.", "Including refugees.", "Including refugees.",
"All data refer to end-2019.", "All data refer to end-2019.",
NA, NA, NA, NA, "Including refugees.", "Including refugees.",
"Including refugees.", "Including refugees.", "Including refugees.",
"Including refugees.", "Including refugees.", "Including refugees.",
NA, NA, "Internally displaced persons (IDP) figure in South Sudan includes 105,000 people who are in an IDP-like situation.",
NA, "Including refugees.", "Including refugees.", "Including refugees.",
"Including refugees.", NA, NA, NA, NA, NA, NA, NA, NA, "Including Canary Islands, Ceuta and Melilla.",
"Including Canary Islands, Ceuta and Melilla.", "Including Canary Islands, Ceuta and Melilla.",
"Including Canary Islands, Ceuta and Melilla.", "Data as at the end of December.",
"Data as at the end of December.", "Data as at the end of December.",
"Including Canary Islands, Ceuta and Melilla.", "Including Canary Islands, Ceuta and Melilla.",
"Including Canary Islands, Ceuta and Melilla.", "Including Canary Islands, Ceuta and Melilla.",
"Data as at the end of December.", "Data as at the end of December.",
"Data as at the end of December.", "Data as at the end of December.",
"Including Canary Islands, Ceuta and Melilla.", "Including Canary Islands, Ceuta and Melilla.",
"Including Canary Islands, Ceuta and Melilla.", "Including Canary Islands, Ceuta and Melilla.",
"Data relates to the end of 2014.", NA, NA, NA, "Including Canary Islands, Ceuta and Melilla.",
"Including Canary Islands, Ceuta and Melilla.", "Including Canary Islands, Ceuta and Melilla.",
"Including Canary Islands, Ceuta and Melilla.", NA, NA, NA, NA,
NA, NA, NA, NA, "Including refugees.", "Including refugees.",
"Including refugees.", "Including refugees.", "Data as at the end of December.",
"Data as at the end of December.", "Data as at the end of December.",
"Data as at the end of December.", "Including refugees.", "Including refugees.",
"Including refugees.", "Including refugees.", "Data as at the end of December.",
"Data as at the end of December.", "Data as at the end of December.",
"Data as at the end of December.", "Including refugees.", "Including refugees.",
"Including refugees.", "Including refugees.", NA, NA, "The statistics of the remaining IDPs, while provided by the Government authorities at the district level, are being reviewed by the central authorities. Once this review has been concluded, the statistics will be changed accordingly.",
NA, "Including refugees.", "Including refugees.", "Including refugees.",
"Including refugees.", NA, NA, "The total statelessness figure excludes 35 stateless persons of Rohingya ethnicity who are also counted as refugees or asylum-seekers from Myanmar, mainly from Rakhine State. UNHCR\x92s statistical reporting generally follows a methodology that reports only one legal status for each person of concern. However, due to the size of the stateless Rohingya population displaced from Myanmar, UNHCR considers it important to reflect the dual status of this population group as both displaced and stateless. This approach is being used for Sri Lanka for the first time in 2020.",
NA, NA, NA, NA, NA, "Including East Jerusalem.", "Including East Jerusalem.",
"Including East Jerusalem.", "Including East Jerusalem.", "Including East Jerusalem.",
"Including East Jerusalem.", "Including East Jerusalem.", "Including East Jerusalem.",
"Including East Jerusalem.", "Including East Jerusalem.", "Including East Jerusalem.",
"Including East Jerusalem.", NA, NA, "Including East Jerusalem.",
"Including East Jerusalem.", "Including East Jerusalem.", "Including East Jerusalem.",
"Including refugees.", "Including refugees.", "Including refugees.",
"Including refugees.", "Data as at the end of December.", "Data as at the end of December.",
"Data as at the end of December.", "Data as at the end of December.",
"Including refugees.", "Including refugees.", "Including refugees.",
"Including refugees.", "Data as at the end of December.", "Data as at the end of December.",
"Data as at the end of December.", "Data as at the end of December.",
"Including refugees.", "Including refugees.", "Including refugees.",
"Including refugees.", NA, NA, "Internally displaced persons (IDP) figure in Sudan includes 77,300 people who are in an IDP-like situation.",
NA, "Including refugees.", "Including refugees.", "Including refugees.",
"Including refugees.", NA, NA, NA, NA, NA, NA, NA, NA, "Including refugees.;Refers to foreign citizens.",
"Including refugees.;Refers to foreign citizens.", "Including refugees.;Refers to foreign citizens.",
"Including refugees.;Refers to foreign citizens.", "Including refugees.;Refers to foreign citizens.",
"Including refugees.;Refers to foreign citizens.", "Including refugees.;Refers to foreign citizens.",
"Including refugees.;Refers to foreign citizens.", "Data as at the end of December.",
"Data as at the end of December.", "Data as at the end of December.",
"Including refugees.;Refers to foreign citizens.", "Including refugees.;Refers to foreign citizens.",
"Including refugees.;Refers to foreign citizens.", "Including refugees.;Refers to foreign citizens.",
NA, NA, NA, NA, NA, NA, "Including refugees.;Refers to foreign citizens.",
"Including refugees.;Refers to foreign citizens.", "Including refugees.;Refers to foreign citizens.",
"Including refugees.;Refers to foreign citizens.", NA, NA, NA,
NA, NA, NA, NA, NA, NA, NA, "Data as at the end of December.",
"Data as at the end of December.", "Data as at the end of December.",
"Data as at the end of December.", NA, NA, NA, NA, "Data as at the end of December.",
"Data as at the end of December.", "Data as at the end of December.",
"Data as at the end of December.", NA, NA, NA, NA, "Data relates to the end of 2014.",
NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA,
NA, NA, NA, "Data as at the end of December.", "Data as at the end of December.",
"Data as at the end of December.", "Data as at the end of December.",
NA, NA, NA, NA, "Data as at the end of December.", "Data as at the end of December.",
"Data as at the end of December.", "Data as at the end of December.",
NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA,
NA, NA, NA, "Including refugees.;Refers to foreign citizens.",
"Including refugees.;Refers to foreign citizens.", "Including refugees.;Refers to foreign citizens.",
"Including refugees.;Refers to foreign citizens.", "Data as at the end of December.",
"Data as at the end of December.", "Data as at the end of December.",
"Data as at the end of December.", "Including refugees.;Refers to foreign citizens.",
"Including refugees.;Refers to foreign citizens.", "Including refugees.;Refers to foreign citizens.",
"Including refugees.;Refers to foreign citizens.", "Data as at the end of December.",
"Data as at the end of December.", "Data as at the end of December.",
"Data as at the end of December.", "Including refugees.;Refers to foreign citizens.",
"Including refugees.;Refers to foreign citizens.", "Including refugees.;Refers to foreign citizens.",
"Including refugees.;Refers to foreign citizens.", "The figure for Iraqi refugees is a Government estimate.",
NA, NA, NA, "Including refugees.;Refers to foreign citizens.",
"Including refugees.;Refers to foreign citizens.", "Including refugees.;Refers to foreign citizens.",
"Including refugees.;Refers to foreign citizens.", NA, NA, "According to some reports many stateless persons have been naturalized since 2011, but no official figures are yet confirmed.",
NA, NA, NA, NA, NA, "Including refugees.", "Including refugees.",
"Including refugees.", "Including refugees.", "Data as at the end of December.",
"Data as at the end of December.", "Data as at the end of December.",
"Data as at the end of December.", "Including refugees.", "Including refugees.",
"Including refugees.", "Including refugees.", "Data as at the end of December.",
"Data as at the end of December.", "Data as at the end of December.",
"Data as at the end of December.", "Including refugees.", "Including refugees.",
"Including refugees.", "Including refugees.", NA, NA, "Figure refers to a registration exercise in three regions and 637 persons registered as stateless by the Ministry of Internal Affairs of Tajikistan.",
NA, "Including refugees.", "Including refugees.", "Including refugees.",
"Including refugees.", NA, NA, NA, NA, NA, NA, NA, NA, "Including refugees.",
"Including refugees.", "Including refugees.", "Including refugees.",
"Data as at the end of December.", "Data as at the end of December.",
"Data as at the end of December.", "Data as at the end of December.",
"Including refugees.", "Including refugees.", "Including refugees.",
"Including refugees.", "Data as at the end of December.", "Data as at the end of December.",
"Data as at the end of December.", "Data as at the end of December.",
"Including refugees.", "Including refugees.", "Including refugees.",
"Including refugees.", NA, NA, "Figure of stateless persons in Thailand refers to 2011.",
NA, "Including refugees.", "Including refugees.", "Including refugees.",
"Including refugees.", NA, NA, "The total statelessness figure includes 474,996 stateless persons reported by the Royal Thai Government and registered with the national civil registration system as of June 2020. This figure excludes 108 stateless persons of Rohingya ethnicity from Myanmar who are also counted as others of concern to UNHCR. UNHCR\x92s statistical reporting generally follows a methodology that reports only one status for each person of concern. However, due to the size of the stateless Rohingya population displaced from Myanmar, UNHCR considers it important to reflect the dual status of this population group as others of concern to UNHCR and stateless. This approach is being used for Thailand for the first time in 2019.",
NA, NA, NA, NA, NA, "Including refugees.", "Including refugees.",
"Including refugees.", "Including refugees.", "Data as at the end of December.",
"Data as at the end of December.", "Data as at the end of December.",
"Including refugees.", "Including refugees.", "Including refugees.",
"Including refugees.", "Data as at the end of December.", "Data as at the end of December.",
"Data as at the end of December.", "Including refugees.", "Including refugees.",
"Including refugees.", "Including refugees.", NA, NA, NA, NA,
"Including refugees.", "Including refugees.", "Including refugees.",
"Including refugees.", "Including refugees.;Refers to foreign citizens.",
"Including refugees.;Refers to foreign citizens.", "Including refugees.;Refers to foreign citizens.",
"Including refugees.;Refers to foreign citizens.", "Data as at the end of December.",
"Data as at the end of December.", "Data as at the end of December.",
"Data as at the end of December.", "Including refugees.;Refers to foreign citizens.",
"Including refugees.;Refers to foreign citizens.", "Including refugees.;Refers to foreign citizens.",
"Including refugees.;Refers to foreign citizens.", "Data as at the end of December.",
"Data as at the end of December.", "Data as at the end of December.",
"Data as at the end of December.", "Including refugees.;Refers to foreign citizens.",
"Including refugees.;Refers to foreign citizens.", "Including refugees.;Refers to foreign citizens.",
"Including refugees.;Refers to foreign citizens.", NA, NA, NA,
NA, NA, NA, NA, "Including refugees.;Refers to foreign citizens.",
"Including refugees.;Refers to foreign citizens.", "Including refugees.;Refers to foreign citizens.",
"Including refugees.;Refers to foreign citizens.", NA, NA, NA,
NA, NA, NA, "Including refugees.", "Including refugees.", "Including refugees.",
"Including refugees.", "Including refugees.", "Including refugees.",
"Including refugees.", "Including refugees.", "Including refugees.",
"Including refugees.", "Including refugees.", "Including refugees.",
"Including refugees.", "Including refugees.", "Including refugees.",
"Including refugees.", "Data as at the end of December.", "Data as at the end of December.",
"Including refugees.", "Including refugees.", "Including refugees.",
"Including refugees.", "Including refugees.", "Including refugees.",
"Including refugees.", "Including refugees.", NA, NA, "Including refugees.",
"Including refugees.", "Including refugees.", "Including refugees.",
"Including refugees.", "Including refugees.", "Including refugees.",
"Including refugees.", "Data as at the end of December.", "Data as at the end of December.",
"Data as at the end of December.", "Including refugees.", "Including refugees.",
"Including refugees.", "Including refugees.", NA, NA, NA, "Including refugees.",
"Including refugees.", "Including refugees.", "Including refugees.",
NA, NA, "Including Venezuelans displaced abroad.", NA, NA, NA,
NA, NA, "Including refugees.;Refers to foreign citizens.", "Including refugees.;Refers to foreign citizens.",
"Including refugees.;Refers to foreign citizens.", "Including refugees.;Refers to foreign citizens.",
"Data as at the end of December.", "Data as at the end of December.",
"Data as at the end of December.", "Including refugees.;Refers to foreign citizens.",
"Including refugees.;Refers to foreign citizens.", "Including refugees.;Refers to foreign citizens.",
"Including refugees.;Refers to foreign citizens.", "Data as at the end of December.",
"Data as at the end of December.", "Data as at the end of December.",
"Data as at the end of December.", "Including refugees.;Refers to foreign citizens.",
"Including refugees.;Refers to foreign citizens.", "Including refugees.;Refers to foreign citizens.",
"Including refugees.;Refers to foreign citizens.", NA, NA, NA,
NA, "Including refugees.;Refers to foreign citizens.", "Including refugees.;Refers to foreign citizens.",
"Including refugees.;Refers to foreign citizens.", "Including refugees.;Refers to foreign citizens.",
NA, NA, NA, NA, NA, NA, NA, NA, "Including refugees.", "Including refugees.",
"Including refugees.", "Including refugees.", "Data as at the end of December.",
"Data as at the end of December.", "Data as at the end of December.",
"Data as at the end of December.", "Including refugees.", "Including refugees.",
"Including refugees.", "Including refugees.", "Data as at the end of December.",
"Data as at the end of December.", "Data as at the end of December.",
"Data as at the end of December.", "Including refugees.", "Including refugees.",
"Including refugees.", "Including refugees.", "Refugee figure for Syrians in Turkey is a Government estimate.",
NA, NA, NA, "Including refugees.", "Including refugees.", "Including refugees.",
"Including refugees.", "Refugee figure is a Government estimate.",
NA, NA, NA, NA, NA, NA, NA, "Including refugees.", "Including refugees.",
"Including refugees.", "Including refugees.", "Data as at the end of December.",
"Data as at the end of December.", "Data as at the end of December.",
"Data as at the end of December.", "Including refugees.", "Including refugees.",
"Including refugees.", "Including refugees.", "Data as at the end of December.",
"Data as at the end of December.", "Data as at the end of December.",
"Including refugees.", "Including refugees.", "Including refugees.",
"Including refugees.", NA, NA, NA, "Including refugees.", "Including refugees.",
"Including refugees.", "Including refugees.", NA, "In the absence of official data, the figure reported refers to stateless persons and persons with undetermined nationality identified by UNHCR partner organizations in Turkmenistan. The decrease in the reporting figure is due to naturalization in Turkmenistan and confirmation of nationality by a third country.",
NA, NA, NA, "In the absence of official data, the figure reported refers to stateless persons and persons with undetermined nationality identified by UNHCR partner organizations.",
"Including refugees.", "Including refugees.", "Including refugees.",
"Including refugees.", "Including refugees.", "Including refugees.",
NA, NA, NA, "Including refugees.", "Including refugees.", NA,
NA, NA, NA, NA, NA, NA, NA, "Refers to foreign citizens.", "Refers to foreign citizens.",
"Refers to foreign citizens.", "Refers to foreign citizens.",
"Refers to foreign citizens.", "Refers to foreign citizens.",
"Refers to foreign citizens.", "Refers to foreign citizens.",
"Including refugees.", "Including refugees.", "Including refugees.",
"Including refugees.", "Data as at the end of December.", "Data as at the end of December.",
"Data as at the end of December.", "Data as at the end of December.",
"Including refugees.", "Including refugees.", "Including refugees.",
"Including refugees.", "Data as at the end of December.", "Data as at the end of December.",
"Data as at the end of December.", "Data as at the end of December.",
"Including refugees.", "Including refugees.", "Including refugees.",
"Including refugees.", NA, NA, NA, NA, "Including refugees.",
"Including refugees.", "Including refugees.", "Including refugees.",
NA, NA, NA, NA, NA, NA, NA, "The estimates represent a rudimentary and unverified/unconfirmed estimate of in situ stateless persons provided by representatives from these unrecognized communities.",
"Including Crimea.", "Including Crimea.", "Including Crimea.",
"Including Crimea.", "Data as at the end of December.", "Data as at the end of December.",
"Data as at the end of December.", "Data as at the end of December.",
"Including Crimea.", "Including Crimea.", "Including Crimea.",
"Including Crimea.", "Data as at the end of December.", "Data as at the end of December.",
"Data as at the end of December.", "Data as at the end of December.",
"Including Crimea.", "Including Crimea.", "Including Crimea.",
"Including Crimea.", NA, NA, NA, NA, "Including Crimea.", "Including Crimea.",
"Including Crimea.", "Including Crimea.", NA, NA, "The IDP figure has been aligned to the inter-agency methodology as defined in the 2020 Humanitarian Needs Overview. Figure of others of concern relates to persons who have specific protection needs and live in non-government-controlled areas or within 20km of the contact line in government-controlled areas.",
NA, "UNHCR continues to report on the 2,345 refugees,1,325 asylum-seekers, and 36,459 stateless people until their status and whereabouts can be ascertained. The IDP and others of concern figures do not include affected communities, who are not displaced, some of whom were targeted for assistance by UNHCR and partners. While some data on refugees' and IDPs' movements back to their country/place of origin is available, with the fluid security situation in Ukraine it is not possible to determine if people who have returned have remained.",
"UNHCR continues to report on the 2,345 refugees,1,325 asylum-seekers, and 36,459 stateless people until their status and whereabouts can be ascertained. The IDP and others of concern figures do not include affected communities, who are not displaced, some of whom were targeted for assistance by UNHCR and partners. While some data on refugees' and IDPs' movements back to their country/place of origin is available, with the fluid security situation in Ukraine it is not possible to determine if people who have returned have remained.",
"UNHCR continues to report on the 2,345 refugees,1,325 asylum-seekers, and 36,459 stateless people until their status and whereabouts can be ascertained. The IDP and others of concern figures do not include affected communities, who are not displaced, some of whom were targeted for assistance by UNHCR and partners. While some data on refugees' and IDPs' movements back to their country/place of origin is available, with the fluid security situation in Ukraine it is not possible to determine if people who have returned have remained.",
NA, "Including refugees.;Refers to foreign citizens.", "Including refugees.;Refers to foreign citizens.",
"Including refugees.;Refers to foreign citizens.", "Including refugees.;Refers to foreign citizens.",
"Data as at the end of December.", "Data as at the end of December.",
"Data as at the end of December.", "Including refugees.;Refers to foreign citizens.",
"Including refugees.;Refers to foreign citizens.", "Including refugees.;Refers to foreign citizens.",
"Including refugees.;Refers to foreign citizens.", "Data as at the end of December.",
"Data as at the end of December.", "Data as at the end of December.",
"Including refugees.;Refers to foreign citizens.", "Including refugees.;Refers to foreign citizens.",
"Including refugees.;Refers to foreign citizens.", "Including refugees.;Refers to foreign citizens.",
NA, NA, NA, "Including refugees.;Refers to foreign citizens.",
"Including refugees.;Refers to foreign citizens.", "Including refugees.;Refers to foreign citizens.",
"Including refugees.;Refers to foreign citizens.", NA, NA, NA,
NA, NA, NA, NA, NA, NA, NA, NA, NA, "Data as at the end of December.",
"Data as at the end of December.", "Data as at the end of December.",
"Data as at the end of December.", NA, NA, NA, NA, "Data as at the end of December.",
"Data as at the end of December.", "Data as at the end of December.",
"Data as at the end of December.", NA, NA, NA, NA, "Data relates to the end of 2014.",
NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, "Including refugees.;Including Zanzibar.",
"Including refugees.;Including Zanzibar.", "Including refugees.;Including Zanzibar.",
"Including refugees.;Including Zanzibar.", "Data as at the end of December.",
"Data as at the end of December.", "Data as at the end of December.",
"Data as at the end of December.", "Including refugees.;Including Zanzibar.",
"Including refugees.;Including Zanzibar.", "Including refugees.;Including Zanzibar.",
"Including refugees.;Including Zanzibar.", "Data as at the end of December.",
"Data as at the end of December.", "Data as at the end of December.",
"Data as at the end of December.", "Including refugees.;Including Zanzibar.",
"Including refugees.;Including Zanzibar.", "Including refugees.;Including Zanzibar.",
"Including refugees.;Including Zanzibar.", NA, NA, NA, NA, "Including refugees.;Including Zanzibar.",
"Including refugees.;Including Zanzibar.", "Including refugees.;Including Zanzibar.",
"Including refugees.;Including Zanzibar.", NA, NA, NA, NA, NA,
NA, NA, NA, NA, NA, NA, NA, "Data as at the end of December.",
"Data as at the end of December.", NA, NA, NA, NA, NA, "Data as at the end of December.",
"Data as at the end of December.", NA, NA, NA, NA, NA, "Estimate.;Data relates to the end of 2014.",
NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA,
NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, "Including refugees.",
"Including refugees.", "Including refugees.", "Including refugees.",
"Data as at the end of December.", "Data as at the end of December.",
"Data as at the end of December.", "Including refugees.", "Including refugees.",
"Including refugees.", "Including refugees.", "Data as at the end of December.",
"Data as at the end of December.", "Data as at the end of December.",
"Including refugees.", "Including refugees.", "Including refugees.",
"Including refugees.", NA, NA, NA, "Including refugees.", "Including refugees.",
"Including refugees.", "Including refugees.", NA, NA, "Including Venezuelans displaced abroad.",
NA, NA, NA, NA, NA, "Including refugees.", "Including refugees.",
"Including refugees.", "Including refugees.", "Data as at the end of December.",
"Data as at the end of December.", "Data as at the end of December.",
"Data as at the end of December.", "Including refugees.", "Including refugees.",
"Including refugees.", "Including refugees.", "Data as at the end of December.",
"Data as at the end of December.", "Data as at the end of December.",
"Including refugees.", "Including refugees.", "Including refugees.",
"Including refugees.", NA, NA, NA, "Including refugees.", "Including refugees.",
"Including refugees.", "Including refugees.", NA, NA, NA, NA,
NA, NA, "Including refugees.", "Including refugees.", "Including refugees.",
"Including refugees.", "Including refugees.", "Including refugees.",
"Including refugees.", "Including refugees.", "Data as at the end of December.",
"Data as at the end of December.", "Including refugees.", "Including refugees.",
"Including refugees.", "Including refugees.", NA, NA, "Including refugees.",
"Including refugees.", "Including refugees.", "Including refugees.",
NA, NA, "Including refugees.", "Including refugees.", "Including refugees.",
"Including refugees.", "Data as at the end of December.", "Data as at the end of December.",
"Data as at the end of December.", "Data as at the end of December.",
"Including refugees.", "Including refugees.", "Including refugees.",
"Including refugees.", "Data as at the end of December.", "Data as at the end of December.",
"Data as at the end of December.", "Including refugees.", "Including refugees.",
"Including refugees.", "Including refugees.", NA, NA, NA, "Including refugees.",
"Including refugees.", "Including refugees.", "Including refugees.",
NA, NA, NA, NA, NA, NA, NA, NA, "Including refugees.;Refers to foreign citizens.",
"Including refugees.;Refers to foreign citizens.", "Including refugees.;Refers to foreign citizens.",
"Including refugees.;Refers to foreign citizens.", "Data as at the end of December.",
"Data as at the end of December.", "Data as at the end of December.",
"Including refugees.;Refers to foreign citizens.", "Including refugees.;Refers to foreign citizens.",
"Including refugees.;Refers to foreign citizens.", "Including refugees.;Refers to foreign citizens.",
"Data as at the end of December.", "Data as at the end of December.",
"Data as at the end of December.", "Including refugees.;Refers to foreign citizens.",
"Including refugees.;Refers to foreign citizens.", "Including refugees.;Refers to foreign citizens.",
"Including refugees.;Refers to foreign citizens.", NA, NA, "Including refugees.;Refers to foreign citizens.",
"Including refugees.;Refers to foreign citizens.", "Including refugees.;Refers to foreign citizens.",
"Including refugees.;Refers to foreign citizens.", NA, NA, NA,
NA, NA, "Including refugees.", "Including refugees.", "Including refugees.",
"Including refugees.", "Including refugees.", "Including refugees.",
"Including refugees.", "Including refugees.", "Estimate.", "Estimate.",
"Estimate.", "Estimate.", "Estimate.", "Estimate.", "Estimate.",
"Estimate.", "Estimate.", "Estimate.", "Estimate.", "Estimate.",
"Estimate.", "Estimate.", "Estimate.", "Estimate.", "Including refugees.;Refers to foreign citizens.",
"Including refugees.;Refers to foreign citizens.", "Including refugees.;Refers to foreign citizens.",
"Including refugees.;Refers to foreign citizens.", "Data as at the end of December.",
"Data as at the end of December.", "Data as at the end of December.",
"Data as at the end of December.", "Including refugees.;Refers to foreign citizens.",
"Including refugees.;Refers to foreign citizens.", "Including refugees.;Refers to foreign citizens.",
"Including refugees.;Refers to foreign citizens.", "Data as at the end of December.",
"Data as at the end of December.", "Data as at the end of December.",
"Data as at the end of December.", "Including refugees.;Refers to foreign citizens.",
"Including refugees.;Refers to foreign citizens.", "Including refugees.;Refers to foreign citizens.",
"Including refugees.;Refers to foreign citizens.", NA, NA, NA,
NA, "Including refugees.;Refers to foreign citizens.", "Including refugees.;Refers to foreign citizens.",
"Including refugees.;Refers to foreign citizens.", "Including refugees.;Refers to foreign citizens.",
NA, NA, NA, NA, NA, NA, NA, NA, "Including refugees.", "Including refugees.",
"Including refugees.", "Including refugees.", "Data as at the end of December.",
"Data as at the end of December.", "Data as at the end of December.",
"Data as at the end of December.", "Including refugees.", "Including refugees.",
"Including refugees.", "Including refugees.", "Data as at the end of December.",
"Data as at the end of December.", "Data as at the end of December.",
"Data as at the end of December.", "Including refugees.", "Including refugees.",
"Including refugees.", "Including refugees.", NA, NA, NA, NA,
"Including refugees.", "Including refugees.", "Including refugees.",
"Including refugees.", NA, NA, NA, NA, NA, NA, NA, NA, "Including refugees.",
"Including refugees.", "Including refugees.", "Including refugees.",
"Data as at the end of December.", "Data as at the end of December.",
"Data as at the end of December.", "Data as at the end of December.",
"Including refugees.", "Including refugees.", "Including refugees.",
"Including refugees.", "Data as at the end of December.", "Data as at the end of December.",
"Data as at the end of December.", "Including refugees.", "Including refugees.",
"Including refugees.", "Including refugees.", NA, NA, "Estimate.",
NA, "Including refugees.", "Including refugees.", "Including refugees.",
"Including refugees.", NA, NA, "A study is being pursued to provide a revised estimate of statelessness figure.",
NA, "A study is being pursued to provide a revised estimate of statelessness figure.",
"A study is being pursued to provide a revised estimate of statelessness figure.",
"A study is being pursued to provide a revised estimate of statelessness figure.",
"A study is being pursued to provide a revised estimate of statelessness figure."
), region = c("South Asia", "South Asia", "South Asia", "South Asia",
"South Asia", "South Asia", "South Asia", "South Asia", "South Asia",
"South Asia", "South Asia", "South Asia", "South Asia", "South Asia",
"South Asia", "South Asia", "South Asia", "South Asia", "South Asia",
"South Asia", "South Asia", "South Asia", "South Asia", "South Asia",
"South Asia", "South Asia", "South Asia", "South Asia", "South Asia",
"South Asia", "South Asia", "South Asia", "South Asia", "South Asia",
"South Asia", "South Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Middle East & North Africa", "Middle East & North Africa", "Middle East & North Africa",
"Middle East & North Africa", "Middle East & North Africa", "Middle East & North Africa",
"Middle East & North Africa", "Middle East & North Africa", "Middle East & North Africa",
"Middle East & North Africa", "Middle East & North Africa", "Middle East & North Africa",
"Middle East & North Africa", "Middle East & North Africa", "Middle East & North Africa",
"Middle East & North Africa", "Middle East & North Africa", "Middle East & North Africa",
"Middle East & North Africa", "Middle East & North Africa", "Middle East & North Africa",
"Middle East & North Africa", "Middle East & North Africa", "Middle East & North Africa",
"Middle East & North Africa", "Middle East & North Africa", "Middle East & North Africa",
"Middle East & North Africa", "Middle East & North Africa", "Middle East & North Africa",
"Middle East & North Africa", "East Asia & Pacific", "East Asia & Pacific",
"East Asia & Pacific", "East Asia & Pacific", "East Asia & Pacific",
"East Asia & Pacific", "East Asia & Pacific", "East Asia & Pacific",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", NA, NA, NA, NA, NA, NA, NA, NA, NA, NA,
NA, NA, NA, NA, "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"East Asia & Pacific", "East Asia & Pacific", "East Asia & Pacific",
"East Asia & Pacific", "East Asia & Pacific", "East Asia & Pacific",
"East Asia & Pacific", "East Asia & Pacific", "East Asia & Pacific",
"East Asia & Pacific", "East Asia & Pacific", "East Asia & Pacific",
"East Asia & Pacific", "East Asia & Pacific", "East Asia & Pacific",
"East Asia & Pacific", "East Asia & Pacific", "East Asia & Pacific",
"East Asia & Pacific", "East Asia & Pacific", "East Asia & Pacific",
"East Asia & Pacific", "East Asia & Pacific", "East Asia & Pacific",
"East Asia & Pacific", "East Asia & Pacific", "East Asia & Pacific",
"East Asia & Pacific", "East Asia & Pacific", "East Asia & Pacific",
"East Asia & Pacific", "East Asia & Pacific", "East Asia & Pacific",
"East Asia & Pacific", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Middle East & North Africa", "Middle East & North Africa", "Middle East & North Africa",
"Middle East & North Africa", "Middle East & North Africa", "Middle East & North Africa",
"Middle East & North Africa", "Middle East & North Africa", "Middle East & North Africa",
"Middle East & North Africa", "Middle East & North Africa", "Middle East & North Africa",
"Middle East & North Africa", "Middle East & North Africa", "Middle East & North Africa",
"Middle East & North Africa", "Middle East & North Africa", "Middle East & North Africa",
"Middle East & North Africa", "Middle East & North Africa", "Middle East & North Africa",
"Middle East & North Africa", "Middle East & North Africa", "Middle East & North Africa",
"Middle East & North Africa", "Middle East & North Africa", "Middle East & North Africa",
"Middle East & North Africa", "Middle East & North Africa", "Middle East & North Africa",
"South Asia", "South Asia", "South Asia", "South Asia", "South Asia",
"South Asia", "South Asia", "South Asia", "South Asia", "South Asia",
"South Asia", "South Asia", "South Asia", "South Asia", "South Asia",
"South Asia", "South Asia", "South Asia", "South Asia", "South Asia",
"South Asia", "South Asia", "South Asia", "South Asia", "South Asia",
"South Asia", "South Asia", "South Asia", "South Asia", "South Asia",
"South Asia", "South Asia", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "North America",
"North America", "North America", "North America", "North America",
"North America", "North America", "North America", "South Asia",
"South Asia", "South Asia", "South Asia", "South Asia", "South Asia",
"South Asia", "South Asia", "South Asia", "South Asia", "South Asia",
"South Asia", "South Asia", "South Asia", "South Asia", "South Asia",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", NA,
NA, NA, NA, NA, NA, NA, NA, NA, NA, "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "East Asia & Pacific", "East Asia & Pacific",
"East Asia & Pacific", "East Asia & Pacific", "East Asia & Pacific",
"East Asia & Pacific", "East Asia & Pacific", "East Asia & Pacific",
"East Asia & Pacific", "East Asia & Pacific", "East Asia & Pacific",
"East Asia & Pacific", "East Asia & Pacific", "East Asia & Pacific",
"East Asia & Pacific", "East Asia & Pacific", "East Asia & Pacific",
"East Asia & Pacific", "East Asia & Pacific", "East Asia & Pacific",
"East Asia & Pacific", "East Asia & Pacific", "East Asia & Pacific",
"East Asia & Pacific", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "East Asia & Pacific", "East Asia & Pacific",
"East Asia & Pacific", "East Asia & Pacific", "East Asia & Pacific",
"East Asia & Pacific", "East Asia & Pacific", "East Asia & Pacific",
"East Asia & Pacific", "East Asia & Pacific", "East Asia & Pacific",
"East Asia & Pacific", "East Asia & Pacific", "East Asia & Pacific",
"East Asia & Pacific", "East Asia & Pacific", "East Asia & Pacific",
"East Asia & Pacific", "East Asia & Pacific", "East Asia & Pacific",
"East Asia & Pacific", "East Asia & Pacific", "East Asia & Pacific",
"East Asia & Pacific", "East Asia & Pacific", "East Asia & Pacific",
"East Asia & Pacific", "East Asia & Pacific", "East Asia & Pacific",
"East Asia & Pacific", "East Asia & Pacific", "East Asia & Pacific",
"East Asia & Pacific", "East Asia & Pacific", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "North America",
"North America", "North America", "North America", "North America",
"North America", "North America", "North America", "North America",
"North America", "North America", "North America", "North America",
"North America", "North America", "North America", "North America",
"North America", "North America", "North America", "North America",
"North America", "North America", "North America", "North America",
"North America", "North America", "North America", "North America",
"North America", "North America", "North America", "North America",
"North America", "North America", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"East Asia & Pacific", "East Asia & Pacific", "East Asia & Pacific",
"East Asia & Pacific", "East Asia & Pacific", "East Asia & Pacific",
"East Asia & Pacific", "East Asia & Pacific", "East Asia & Pacific",
"East Asia & Pacific", "East Asia & Pacific", "East Asia & Pacific",
"East Asia & Pacific", "East Asia & Pacific", "East Asia & Pacific",
"East Asia & Pacific", "East Asia & Pacific", "East Asia & Pacific",
"East Asia & Pacific", "East Asia & Pacific", "East Asia & Pacific",
"East Asia & Pacific", "East Asia & Pacific", "East Asia & Pacific",
"East Asia & Pacific", "East Asia & Pacific", "East Asia & Pacific",
"East Asia & Pacific", "East Asia & Pacific", "East Asia & Pacific",
"East Asia & Pacific", "East Asia & Pacific", "East Asia & Pacific",
"East Asia & Pacific", "East Asia & Pacific", "East Asia & Pacific",
"East Asia & Pacific", "East Asia & Pacific", "East Asia & Pacific",
"East Asia & Pacific", "East Asia & Pacific", "East Asia & Pacific",
"East Asia & Pacific", "East Asia & Pacific", "East Asia & Pacific",
"East Asia & Pacific", "East Asia & Pacific", "East Asia & Pacific",
"East Asia & Pacific", "East Asia & Pacific", "East Asia & Pacific",
"East Asia & Pacific", "East Asia & Pacific", "East Asia & Pacific",
"East Asia & Pacific", "East Asia & Pacific", "East Asia & Pacific",
"East Asia & Pacific", "East Asia & Pacific", "East Asia & Pacific",
"East Asia & Pacific", "East Asia & Pacific", "East Asia & Pacific",
"East Asia & Pacific", "East Asia & Pacific", "East Asia & Pacific",
"East Asia & Pacific", "East Asia & Pacific", "East Asia & Pacific",
"East Asia & Pacific", "East Asia & Pacific", "East Asia & Pacific",
"East Asia & Pacific", "East Asia & Pacific", "East Asia & Pacific",
"East Asia & Pacific", "East Asia & Pacific", "East Asia & Pacific",
"East Asia & Pacific", "East Asia & Pacific", "East Asia & Pacific",
"East Asia & Pacific", "East Asia & Pacific", "East Asia & Pacific",
"East Asia & Pacific", "East Asia & Pacific", "East Asia & Pacific",
"East Asia & Pacific", "East Asia & Pacific", "East Asia & Pacific",
"East Asia & Pacific", "East Asia & Pacific", "East Asia & Pacific",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", NA, NA, NA, NA, NA,
NA, NA, NA, "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "East Asia & Pacific",
"East Asia & Pacific", "East Asia & Pacific", "East Asia & Pacific",
"East Asia & Pacific", "East Asia & Pacific", "East Asia & Pacific",
"East Asia & Pacific", "East Asia & Pacific", "East Asia & Pacific",
"East Asia & Pacific", "East Asia & Pacific", "East Asia & Pacific",
"East Asia & Pacific", "East Asia & Pacific", "East Asia & Pacific",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Middle East & North Africa", "Middle East & North Africa", "Middle East & North Africa",
"Middle East & North Africa", "Middle East & North Africa", "Middle East & North Africa",
"Middle East & North Africa", "Middle East & North Africa", "Middle East & North Africa",
"Middle East & North Africa", "Middle East & North Africa", "Middle East & North Africa",
"Middle East & North Africa", "Middle East & North Africa", "Middle East & North Africa",
"Middle East & North Africa", "Middle East & North Africa", "Middle East & North Africa",
"Middle East & North Africa", "Middle East & North Africa", "Middle East & North Africa",
"Middle East & North Africa", "Middle East & North Africa", "Middle East & North Africa",
"Middle East & North Africa", "Middle East & North Africa", "Middle East & North Africa",
"Middle East & North Africa", "Middle East & North Africa", "Middle East & North Africa",
"Middle East & North Africa", "Middle East & North Africa", "Middle East & North Africa",
"Middle East & North Africa", "Middle East & North Africa", "Middle East & North Africa",
"Middle East & North Africa", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Middle East & North Africa",
"Middle East & North Africa", "Middle East & North Africa", "Middle East & North Africa",
"Middle East & North Africa", "Middle East & North Africa", "Middle East & North Africa",
"Middle East & North Africa", "Middle East & North Africa", "Middle East & North Africa",
"Middle East & North Africa", "Middle East & North Africa", "Middle East & North Africa",
"Middle East & North Africa", "Middle East & North Africa", "Middle East & North Africa",
"Middle East & North Africa", "Middle East & North Africa", "Middle East & North Africa",
"Middle East & North Africa", "Middle East & North Africa", "Middle East & North Africa",
"Middle East & North Africa", "Middle East & North Africa", "Middle East & North Africa",
"Middle East & North Africa", "Middle East & North Africa", "Middle East & North Africa",
"Middle East & North Africa", "Middle East & North Africa", "Middle East & North Africa",
"Middle East & North Africa", "Middle East & North Africa", "Middle East & North Africa",
"Middle East & North Africa", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
NA, NA, NA, NA, NA, NA, NA, NA, "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"East Asia & Pacific", "East Asia & Pacific", "East Asia & Pacific",
"East Asia & Pacific", "East Asia & Pacific", "East Asia & Pacific",
"East Asia & Pacific", "East Asia & Pacific", "East Asia & Pacific",
"East Asia & Pacific", "East Asia & Pacific", "East Asia & Pacific",
"East Asia & Pacific", "East Asia & Pacific", "East Asia & Pacific",
"East Asia & Pacific", "East Asia & Pacific", "East Asia & Pacific",
"East Asia & Pacific", "East Asia & Pacific", "East Asia & Pacific",
"East Asia & Pacific", "East Asia & Pacific", "East Asia & Pacific",
"East Asia & Pacific", "East Asia & Pacific", "East Asia & Pacific",
"East Asia & Pacific", "East Asia & Pacific", "East Asia & Pacific",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", NA, NA, NA,
NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, "East Asia & Pacific",
"East Asia & Pacific", "East Asia & Pacific", "East Asia & Pacific",
"East Asia & Pacific", "East Asia & Pacific", "East Asia & Pacific",
"East Asia & Pacific", "East Asia & Pacific", "East Asia & Pacific",
"East Asia & Pacific", "East Asia & Pacific", "East Asia & Pacific",
"East Asia & Pacific", "East Asia & Pacific", "East Asia & Pacific",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", NA,
NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, "East Asia & Pacific",
"East Asia & Pacific", "East Asia & Pacific", "East Asia & Pacific",
"East Asia & Pacific", "East Asia & Pacific", "East Asia & Pacific",
"East Asia & Pacific", "East Asia & Pacific", "East Asia & Pacific",
"East Asia & Pacific", "East Asia & Pacific", "East Asia & Pacific",
"East Asia & Pacific", "East Asia & Pacific", "East Asia & Pacific",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", NA,
NA, NA, NA, NA, NA, NA, NA, "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "South Asia", "South Asia", "South Asia",
"South Asia", "South Asia", "South Asia", "South Asia", "South Asia",
"South Asia", "South Asia", "South Asia", "South Asia", "South Asia",
"South Asia", "South Asia", "South Asia", "South Asia", "South Asia",
"South Asia", "South Asia", "South Asia", "South Asia", "South Asia",
"South Asia", "South Asia", "South Asia", "South Asia", "South Asia",
"South Asia", "South Asia", "South Asia", "South Asia", "South Asia",
"South Asia", "East Asia & Pacific", "East Asia & Pacific", "East Asia & Pacific",
"East Asia & Pacific", "East Asia & Pacific", "East Asia & Pacific",
"East Asia & Pacific", "East Asia & Pacific", "East Asia & Pacific",
"East Asia & Pacific", "East Asia & Pacific", "East Asia & Pacific",
"East Asia & Pacific", "East Asia & Pacific", "East Asia & Pacific",
"East Asia & Pacific", "East Asia & Pacific", "East Asia & Pacific",
"East Asia & Pacific", "East Asia & Pacific", "East Asia & Pacific",
"East Asia & Pacific", "East Asia & Pacific", "East Asia & Pacific",
"East Asia & Pacific", "East Asia & Pacific", "East Asia & Pacific",
"East Asia & Pacific", "East Asia & Pacific", "East Asia & Pacific",
"East Asia & Pacific", "East Asia & Pacific", "East Asia & Pacific",
"East Asia & Pacific", "Middle East & North Africa", "Middle East & North Africa",
"Middle East & North Africa", "Middle East & North Africa", "Middle East & North Africa",
"Middle East & North Africa", "Middle East & North Africa", "Middle East & North Africa",
"Middle East & North Africa", "Middle East & North Africa", "Middle East & North Africa",
"Middle East & North Africa", "Middle East & North Africa", "Middle East & North Africa",
"Middle East & North Africa", "Middle East & North Africa", "Middle East & North Africa",
"Middle East & North Africa", "Middle East & North Africa", "Middle East & North Africa",
"Middle East & North Africa", "Middle East & North Africa", "Middle East & North Africa",
"Middle East & North Africa", "Middle East & North Africa", "Middle East & North Africa",
"Middle East & North Africa", "Middle East & North Africa", "Middle East & North Africa",
"Middle East & North Africa", "Middle East & North Africa", "Middle East & North Africa",
"Middle East & North Africa", "Middle East & North Africa", "Middle East & North Africa",
"Middle East & North Africa", "Middle East & North Africa", "Middle East & North Africa",
"Middle East & North Africa", "Middle East & North Africa", "Middle East & North Africa",
"Middle East & North Africa", "Middle East & North Africa", "Middle East & North Africa",
"Middle East & North Africa", "Middle East & North Africa", "Middle East & North Africa",
"Middle East & North Africa", "Middle East & North Africa", "Middle East & North Africa",
"Middle East & North Africa", "Middle East & North Africa", "Middle East & North Africa",
"Middle East & North Africa", "Middle East & North Africa", "Middle East & North Africa",
"Middle East & North Africa", "Middle East & North Africa", "Middle East & North Africa",
"Middle East & North Africa", "Middle East & North Africa", "Middle East & North Africa",
"Middle East & North Africa", "Middle East & North Africa", "Middle East & North Africa",
"Middle East & North Africa", "Middle East & North Africa", "Middle East & North Africa",
"Middle East & North Africa", "Middle East & North Africa", "Middle East & North Africa",
"Middle East & North Africa", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Middle East & North Africa", "Middle East & North Africa", "Middle East & North Africa",
"Middle East & North Africa", "Middle East & North Africa", "Middle East & North Africa",
"Middle East & North Africa", "Middle East & North Africa", "Middle East & North Africa",
"Middle East & North Africa", "Middle East & North Africa", "Middle East & North Africa",
"Middle East & North Africa", "Middle East & North Africa", "Middle East & North Africa",
"Middle East & North Africa", "Middle East & North Africa", "Middle East & North Africa",
"Middle East & North Africa", "Middle East & North Africa", "Middle East & North Africa",
"Middle East & North Africa", "Middle East & North Africa", "Middle East & North Africa",
"Middle East & North Africa", "Middle East & North Africa", "Middle East & North Africa",
"Middle East & North Africa", "Middle East & North Africa", "Middle East & North Africa",
"Middle East & North Africa", "Middle East & North Africa", "Middle East & North Africa",
"Middle East & North Africa", "Middle East & North Africa", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"East Asia & Pacific", "East Asia & Pacific", "East Asia & Pacific",
"East Asia & Pacific", "East Asia & Pacific", "East Asia & Pacific",
"East Asia & Pacific", "East Asia & Pacific", "East Asia & Pacific",
"East Asia & Pacific", "East Asia & Pacific", "East Asia & Pacific",
"East Asia & Pacific", "East Asia & Pacific", "East Asia & Pacific",
"East Asia & Pacific", "East Asia & Pacific", "East Asia & Pacific",
"East Asia & Pacific", "East Asia & Pacific", "East Asia & Pacific",
"East Asia & Pacific", "East Asia & Pacific", "East Asia & Pacific",
"East Asia & Pacific", "East Asia & Pacific", "East Asia & Pacific",
"East Asia & Pacific", "East Asia & Pacific", "East Asia & Pacific",
"East Asia & Pacific", "East Asia & Pacific", "East Asia & Pacific",
"East Asia & Pacific", "East Asia & Pacific", "East Asia & Pacific",
"Middle East & North Africa", "Middle East & North Africa", "Middle East & North Africa",
"Middle East & North Africa", "Middle East & North Africa", "Middle East & North Africa",
"Middle East & North Africa", "Middle East & North Africa", "Middle East & North Africa",
"Middle East & North Africa", "Middle East & North Africa", "Middle East & North Africa",
"Middle East & North Africa", "Middle East & North Africa", "Middle East & North Africa",
"Middle East & North Africa", "Middle East & North Africa", "Middle East & North Africa",
"Middle East & North Africa", "Middle East & North Africa", "Middle East & North Africa",
"Middle East & North Africa", "Middle East & North Africa", "Middle East & North Africa",
"Middle East & North Africa", "Middle East & North Africa", "Middle East & North Africa",
"Middle East & North Africa", "Middle East & North Africa", "Middle East & North Africa",
"Middle East & North Africa", "Middle East & North Africa", "Middle East & North Africa",
"Middle East & North Africa", "Middle East & North Africa", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "East Asia & Pacific",
"East Asia & Pacific", "East Asia & Pacific", "East Asia & Pacific",
"East Asia & Pacific", "East Asia & Pacific", "East Asia & Pacific",
"East Asia & Pacific", "East Asia & Pacific", "East Asia & Pacific",
"East Asia & Pacific", "East Asia & Pacific", "East Asia & Pacific",
"East Asia & Pacific", "East Asia & Pacific", "East Asia & Pacific",
"Middle East & North Africa", "Middle East & North Africa", "Middle East & North Africa",
"Middle East & North Africa", "Middle East & North Africa", "Middle East & North Africa",
"Middle East & North Africa", "Middle East & North Africa", "Middle East & North Africa",
"Middle East & North Africa", "Middle East & North Africa", "Middle East & North Africa",
"Middle East & North Africa", "Middle East & North Africa", "Middle East & North Africa",
"Middle East & North Africa", "Middle East & North Africa", "Middle East & North Africa",
"Middle East & North Africa", "Middle East & North Africa", "Middle East & North Africa",
"Middle East & North Africa", "Middle East & North Africa", "Middle East & North Africa",
"Middle East & North Africa", "Middle East & North Africa", "Middle East & North Africa",
"Middle East & North Africa", "Middle East & North Africa", "Middle East & North Africa",
"Middle East & North Africa", "Middle East & North Africa", "Middle East & North Africa",
"Middle East & North Africa", "Middle East & North Africa", "Middle East & North Africa",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"East Asia & Pacific", "East Asia & Pacific", "East Asia & Pacific",
"East Asia & Pacific", "East Asia & Pacific", "East Asia & Pacific",
"East Asia & Pacific", "East Asia & Pacific", "East Asia & Pacific",
"East Asia & Pacific", "East Asia & Pacific", "East Asia & Pacific",
"East Asia & Pacific", "East Asia & Pacific", "East Asia & Pacific",
"East Asia & Pacific", "East Asia & Pacific", "East Asia & Pacific",
"East Asia & Pacific", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Middle East & North Africa", "Middle East & North Africa",
"Middle East & North Africa", "Middle East & North Africa", "Middle East & North Africa",
"Middle East & North Africa", "Middle East & North Africa", "Middle East & North Africa",
"Middle East & North Africa", "Middle East & North Africa", "Middle East & North Africa",
"Middle East & North Africa", "Middle East & North Africa", "Middle East & North Africa",
"Middle East & North Africa", "Middle East & North Africa", "Middle East & North Africa",
"Middle East & North Africa", "Middle East & North Africa", "Middle East & North Africa",
"Middle East & North Africa", "Middle East & North Africa", "Middle East & North Africa",
"Middle East & North Africa", "Middle East & North Africa", "Middle East & North Africa",
"Middle East & North Africa", "Middle East & North Africa", "Middle East & North Africa",
"Middle East & North Africa", "Middle East & North Africa", "Middle East & North Africa",
"Middle East & North Africa", "Middle East & North Africa", "Middle East & North Africa",
"Middle East & North Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Middle East & North Africa",
"Middle East & North Africa", "Middle East & North Africa", "Middle East & North Africa",
"Middle East & North Africa", "Middle East & North Africa", "Middle East & North Africa",
"Middle East & North Africa", "Middle East & North Africa", "Middle East & North Africa",
"Middle East & North Africa", "Middle East & North Africa", "Middle East & North Africa",
"Middle East & North Africa", "Middle East & North Africa", "Middle East & North Africa",
"Middle East & North Africa", "Middle East & North Africa", "Middle East & North Africa",
"Middle East & North Africa", "Middle East & North Africa", "Middle East & North Africa",
"Middle East & North Africa", "Middle East & North Africa", "Middle East & North Africa",
"Middle East & North Africa", "Middle East & North Africa", "Middle East & North Africa",
"Middle East & North Africa", "Middle East & North Africa", "Middle East & North Africa",
"Middle East & North Africa", "Middle East & North Africa", "Middle East & North Africa",
"Middle East & North Africa", "Middle East & North Africa", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "East Asia & Pacific",
"East Asia & Pacific", "East Asia & Pacific", "East Asia & Pacific",
"East Asia & Pacific", "East Asia & Pacific", "East Asia & Pacific",
"East Asia & Pacific", "East Asia & Pacific", "East Asia & Pacific",
"East Asia & Pacific", "East Asia & Pacific", "East Asia & Pacific",
"East Asia & Pacific", "East Asia & Pacific", "East Asia & Pacific",
"East Asia & Pacific", "East Asia & Pacific", "East Asia & Pacific",
"East Asia & Pacific", "East Asia & Pacific", "East Asia & Pacific",
"East Asia & Pacific", "East Asia & Pacific", "East Asia & Pacific",
"East Asia & Pacific", "East Asia & Pacific", "East Asia & Pacific",
"East Asia & Pacific", "East Asia & Pacific", "East Asia & Pacific",
"East Asia & Pacific", "East Asia & Pacific", "East Asia & Pacific",
"East Asia & Pacific", "East Asia & Pacific", "South Asia", "South Asia",
"South Asia", "South Asia", "South Asia", "South Asia", "South Asia",
"South Asia", "South Asia", "South Asia", "South Asia", "South Asia",
"South Asia", "South Asia", "South Asia", "South Asia", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Middle East & North Africa", "Middle East & North Africa", "Middle East & North Africa",
"Middle East & North Africa", "Middle East & North Africa", "Middle East & North Africa",
"Middle East & North Africa", "Middle East & North Africa", "Middle East & North Africa",
"Middle East & North Africa", "Middle East & North Africa", "Middle East & North Africa",
"Middle East & North Africa", "Middle East & North Africa", "Middle East & North Africa",
"Middle East & North Africa", "Middle East & North Africa", "Middle East & North Africa",
"Middle East & North Africa", "Middle East & North Africa", "Middle East & North Africa",
"Middle East & North Africa", "Middle East & North Africa", "Middle East & North Africa",
"Middle East & North Africa", "Middle East & North Africa", "Middle East & North Africa",
"Middle East & North Africa", "Middle East & North Africa", "Middle East & North Africa",
"Middle East & North Africa", "Middle East & North Africa", "East Asia & Pacific",
"East Asia & Pacific", "East Asia & Pacific", "East Asia & Pacific",
"East Asia & Pacific", "East Asia & Pacific", "East Asia & Pacific",
"East Asia & Pacific", NA, NA, NA, NA, NA, NA, NA, NA, NA, NA,
NA, NA, NA, NA, NA, NA, "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", NA, NA, NA, NA, NA, NA, NA, NA, NA, NA,
NA, NA, NA, NA, NA, NA, "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "East Asia & Pacific",
"East Asia & Pacific", "East Asia & Pacific", "East Asia & Pacific",
"East Asia & Pacific", "East Asia & Pacific", "East Asia & Pacific",
"East Asia & Pacific", "East Asia & Pacific", "East Asia & Pacific",
"East Asia & Pacific", "East Asia & Pacific", "East Asia & Pacific",
"East Asia & Pacific", "East Asia & Pacific", "East Asia & Pacific",
"East Asia & Pacific", "East Asia & Pacific", "East Asia & Pacific",
"East Asia & Pacific", "East Asia & Pacific", "East Asia & Pacific",
"East Asia & Pacific", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "East Asia & Pacific",
"East Asia & Pacific", "East Asia & Pacific", "East Asia & Pacific",
"East Asia & Pacific", "East Asia & Pacific", "East Asia & Pacific",
"East Asia & Pacific", "East Asia & Pacific", "East Asia & Pacific",
"East Asia & Pacific", "East Asia & Pacific", "East Asia & Pacific",
"East Asia & Pacific", "East Asia & Pacific", "East Asia & Pacific",
"East Asia & Pacific", "East Asia & Pacific", "East Asia & Pacific",
"East Asia & Pacific", "East Asia & Pacific", "East Asia & Pacific",
"East Asia & Pacific", "East Asia & Pacific", "East Asia & Pacific",
"East Asia & Pacific", "East Asia & Pacific", "East Asia & Pacific",
"East Asia & Pacific", "East Asia & Pacific", "East Asia & Pacific",
"East Asia & Pacific", "East Asia & Pacific", "East Asia & Pacific",
"East Asia & Pacific", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", NA, NA, NA,
NA, NA, NA, NA, NA, NA, NA, "Middle East & North Africa", "Middle East & North Africa",
"Middle East & North Africa", "Middle East & North Africa", "Middle East & North Africa",
"Middle East & North Africa", "Middle East & North Africa", "Middle East & North Africa",
"Middle East & North Africa", "Middle East & North Africa", "Middle East & North Africa",
"Middle East & North Africa", "Middle East & North Africa", "Middle East & North Africa",
"Middle East & North Africa", "Middle East & North Africa", "Middle East & North Africa",
"Middle East & North Africa", "Middle East & North Africa", "Middle East & North Africa",
"Middle East & North Africa", "Middle East & North Africa", "Middle East & North Africa",
"Middle East & North Africa", "Middle East & North Africa", "Middle East & North Africa",
"Middle East & North Africa", "Middle East & North Africa", "Middle East & North Africa",
"Middle East & North Africa", "Middle East & North Africa", "Middle East & North Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"East Asia & Pacific", "East Asia & Pacific", "East Asia & Pacific",
"East Asia & Pacific", "East Asia & Pacific", "East Asia & Pacific",
"East Asia & Pacific", "East Asia & Pacific", "East Asia & Pacific",
"East Asia & Pacific", "East Asia & Pacific", "East Asia & Pacific",
"East Asia & Pacific", "East Asia & Pacific", "East Asia & Pacific",
"East Asia & Pacific", "East Asia & Pacific", "East Asia & Pacific",
"East Asia & Pacific", "East Asia & Pacific", "East Asia & Pacific",
"East Asia & Pacific", "East Asia & Pacific", "East Asia & Pacific",
"East Asia & Pacific", "East Asia & Pacific", "East Asia & Pacific",
"East Asia & Pacific", "East Asia & Pacific", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "East Asia & Pacific",
"East Asia & Pacific", "East Asia & Pacific", "East Asia & Pacific",
"East Asia & Pacific", "East Asia & Pacific", "East Asia & Pacific",
"East Asia & Pacific", "East Asia & Pacific", "East Asia & Pacific",
"East Asia & Pacific", "East Asia & Pacific", "East Asia & Pacific",
"East Asia & Pacific", "East Asia & Pacific", "East Asia & Pacific",
"East Asia & Pacific", "East Asia & Pacific", "South Asia", "South Asia",
"South Asia", "South Asia", "South Asia", "South Asia", "South Asia",
"South Asia", "South Asia", "South Asia", "South Asia", "South Asia",
"South Asia", "South Asia", "South Asia", "South Asia", "South Asia",
"South Asia", "South Asia", "South Asia", "South Asia", "South Asia",
"South Asia", "South Asia", "South Asia", "South Asia", "South Asia",
"South Asia", "South Asia", "South Asia", "South Asia", "South Asia",
"South Asia", "South Asia", "South Asia", "South Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "East Asia & Pacific",
"East Asia & Pacific", "East Asia & Pacific", "East Asia & Pacific",
"East Asia & Pacific", "East Asia & Pacific", "East Asia & Pacific",
"East Asia & Pacific", "East Asia & Pacific", "East Asia & Pacific",
"East Asia & Pacific", "East Asia & Pacific", "East Asia & Pacific",
"East Asia & Pacific", "East Asia & Pacific", "East Asia & Pacific",
"East Asia & Pacific", "East Asia & Pacific", "East Asia & Pacific",
"East Asia & Pacific", "East Asia & Pacific", "East Asia & Pacific",
"East Asia & Pacific", "East Asia & Pacific", "East Asia & Pacific",
"East Asia & Pacific", "East Asia & Pacific", "East Asia & Pacific",
"East Asia & Pacific", "East Asia & Pacific", "East Asia & Pacific",
"East Asia & Pacific", "East Asia & Pacific", "East Asia & Pacific",
"East Asia & Pacific", "East Asia & Pacific", "East Asia & Pacific",
"East Asia & Pacific", "East Asia & Pacific", "East Asia & Pacific",
"East Asia & Pacific", "East Asia & Pacific", "East Asia & Pacific",
"East Asia & Pacific", "East Asia & Pacific", "East Asia & Pacific",
"East Asia & Pacific", "East Asia & Pacific", "East Asia & Pacific",
"East Asia & Pacific", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", NA, NA, NA, NA, NA,
NA, NA, NA, "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "East Asia & Pacific", "East Asia & Pacific",
"East Asia & Pacific", "East Asia & Pacific", "East Asia & Pacific",
"East Asia & Pacific", "East Asia & Pacific", "East Asia & Pacific",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Middle East & North Africa",
"Middle East & North Africa", "Middle East & North Africa", "Middle East & North Africa",
"Middle East & North Africa", "Middle East & North Africa", "Middle East & North Africa",
"Middle East & North Africa", "Middle East & North Africa", "Middle East & North Africa",
"Middle East & North Africa", "Middle East & North Africa", "Middle East & North Africa",
"Middle East & North Africa", "Middle East & North Africa", "Middle East & North Africa",
"Middle East & North Africa", "Middle East & North Africa", "Middle East & North Africa",
"Middle East & North Africa", "Middle East & North Africa", "Middle East & North Africa",
"Middle East & North Africa", "Middle East & North Africa", "Middle East & North Africa",
"Middle East & North Africa", "Middle East & North Africa", "Middle East & North Africa",
"Middle East & North Africa", "Middle East & North Africa", "Middle East & North Africa",
"South Asia", "South Asia", "South Asia", "South Asia", "South Asia",
"South Asia", "South Asia", "South Asia", "South Asia", "South Asia",
"South Asia", "South Asia", "South Asia", "South Asia", "South Asia",
"South Asia", "South Asia", "South Asia", "South Asia", "South Asia",
"South Asia", "South Asia", "South Asia", "South Asia", "South Asia",
"South Asia", "South Asia", "South Asia", "South Asia", "South Asia",
"South Asia", "South Asia", "South Asia", "South Asia", "South Asia",
"South Asia", "East Asia & Pacific", "East Asia & Pacific", "East Asia & Pacific",
"East Asia & Pacific", "East Asia & Pacific", "East Asia & Pacific",
"East Asia & Pacific", "East Asia & Pacific", "East Asia & Pacific",
"East Asia & Pacific", "East Asia & Pacific", "East Asia & Pacific",
"East Asia & Pacific", "East Asia & Pacific", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "East Asia & Pacific",
"East Asia & Pacific", "East Asia & Pacific", "East Asia & Pacific",
"East Asia & Pacific", "East Asia & Pacific", "East Asia & Pacific",
"East Asia & Pacific", "East Asia & Pacific", "East Asia & Pacific",
"East Asia & Pacific", "East Asia & Pacific", "East Asia & Pacific",
"East Asia & Pacific", "East Asia & Pacific", "East Asia & Pacific",
"East Asia & Pacific", "East Asia & Pacific", "East Asia & Pacific",
"East Asia & Pacific", "East Asia & Pacific", "East Asia & Pacific",
"East Asia & Pacific", "East Asia & Pacific", "East Asia & Pacific",
"East Asia & Pacific", "East Asia & Pacific", "East Asia & Pacific",
"East Asia & Pacific", "East Asia & Pacific", "East Asia & Pacific",
"East Asia & Pacific", "East Asia & Pacific", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "East Asia & Pacific", "East Asia & Pacific",
"East Asia & Pacific", "East Asia & Pacific", "East Asia & Pacific",
"East Asia & Pacific", "East Asia & Pacific", "East Asia & Pacific",
"East Asia & Pacific", "East Asia & Pacific", "East Asia & Pacific",
"East Asia & Pacific", "East Asia & Pacific", "East Asia & Pacific",
"East Asia & Pacific", "East Asia & Pacific", "East Asia & Pacific",
"East Asia & Pacific", "East Asia & Pacific", "East Asia & Pacific",
"East Asia & Pacific", "East Asia & Pacific", "East Asia & Pacific",
"East Asia & Pacific", "East Asia & Pacific", "East Asia & Pacific",
"East Asia & Pacific", "East Asia & Pacific", "East Asia & Pacific",
"East Asia & Pacific", "East Asia & Pacific", "East Asia & Pacific",
"East Asia & Pacific", "East Asia & Pacific", "East Asia & Pacific",
"East Asia & Pacific", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Middle East & North Africa", "Middle East & North Africa", "Middle East & North Africa",
"Middle East & North Africa", "Middle East & North Africa", "Middle East & North Africa",
"Middle East & North Africa", "Middle East & North Africa", "Middle East & North Africa",
"Middle East & North Africa", "Middle East & North Africa", "Middle East & North Africa",
"Middle East & North Africa", "Middle East & North Africa", "Middle East & North Africa",
"Middle East & North Africa", "Middle East & North Africa", "Middle East & North Africa",
"Middle East & North Africa", "Middle East & North Africa", "Middle East & North Africa",
"Middle East & North Africa", "Middle East & North Africa", "Middle East & North Africa",
"Middle East & North Africa", "Middle East & North Africa", "Middle East & North Africa",
"Middle East & North Africa", "Middle East & North Africa", "Middle East & North Africa",
"Middle East & North Africa", "Middle East & North Africa", "Middle East & North Africa",
"Middle East & North Africa", "Middle East & North Africa", "East Asia & Pacific",
"East Asia & Pacific", "East Asia & Pacific", "East Asia & Pacific",
"East Asia & Pacific", "East Asia & Pacific", "East Asia & Pacific",
"East Asia & Pacific", "East Asia & Pacific", "East Asia & Pacific",
"East Asia & Pacific", "East Asia & Pacific", "East Asia & Pacific",
"East Asia & Pacific", "East Asia & Pacific", "East Asia & Pacific",
"East Asia & Pacific", "East Asia & Pacific", "East Asia & Pacific",
"East Asia & Pacific", "East Asia & Pacific", "East Asia & Pacific",
"East Asia & Pacific", "East Asia & Pacific", "East Asia & Pacific",
"East Asia & Pacific", "East Asia & Pacific", "East Asia & Pacific",
"East Asia & Pacific", "East Asia & Pacific", "East Asia & Pacific",
"East Asia & Pacific", "East Asia & Pacific", "East Asia & Pacific",
"East Asia & Pacific", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", NA, NA, NA, NA, NA, NA, NA, NA, NA,
NA, NA, NA, NA, NA, NA, NA, "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", NA, NA, NA, NA, NA, NA, NA, NA, "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
NA, NA, NA, NA, NA, NA, NA, NA, "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "East Asia & Pacific", "East Asia & Pacific",
"East Asia & Pacific", "East Asia & Pacific", "East Asia & Pacific",
"East Asia & Pacific", "East Asia & Pacific", "East Asia & Pacific",
"East Asia & Pacific", "East Asia & Pacific", "East Asia & Pacific",
"East Asia & Pacific", "East Asia & Pacific", "East Asia & Pacific",
"East Asia & Pacific", "East Asia & Pacific", "East Asia & Pacific",
"East Asia & Pacific", "East Asia & Pacific", "East Asia & Pacific",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Middle East & North Africa", "Middle East & North Africa", "Middle East & North Africa",
"Middle East & North Africa", "Middle East & North Africa", "Middle East & North Africa",
"Middle East & North Africa", "Middle East & North Africa", "Middle East & North Africa",
"Middle East & North Africa", "Middle East & North Africa", "Middle East & North Africa",
"Middle East & North Africa", "Middle East & North Africa", "Middle East & North Africa",
"Middle East & North Africa", "Middle East & North Africa", "Middle East & North Africa",
"Middle East & North Africa", "Middle East & North Africa", "Middle East & North Africa",
"Middle East & North Africa", "Middle East & North Africa", "Middle East & North Africa",
"Middle East & North Africa", "Middle East & North Africa", "Middle East & North Africa",
"Middle East & North Africa", "Middle East & North Africa", "Middle East & North Africa",
"Middle East & North Africa", "Middle East & North Africa", "Middle East & North Africa",
"Middle East & North Africa", "Middle East & North Africa", "Middle East & North Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"East Asia & Pacific", "East Asia & Pacific", "East Asia & Pacific",
"East Asia & Pacific", "East Asia & Pacific", "East Asia & Pacific",
"East Asia & Pacific", "East Asia & Pacific", "East Asia & Pacific",
"East Asia & Pacific", "East Asia & Pacific", "East Asia & Pacific",
"East Asia & Pacific", "East Asia & Pacific", "East Asia & Pacific",
"East Asia & Pacific", "East Asia & Pacific", "East Asia & Pacific",
"East Asia & Pacific", "East Asia & Pacific", "East Asia & Pacific",
"East Asia & Pacific", "East Asia & Pacific", "East Asia & Pacific",
"East Asia & Pacific", "East Asia & Pacific", "East Asia & Pacific",
"East Asia & Pacific", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "East Asia & Pacific",
"East Asia & Pacific", "East Asia & Pacific", "East Asia & Pacific",
"East Asia & Pacific", "East Asia & Pacific", "East Asia & Pacific",
"East Asia & Pacific", "East Asia & Pacific", "East Asia & Pacific",
"East Asia & Pacific", "East Asia & Pacific", "East Asia & Pacific",
"East Asia & Pacific", "East Asia & Pacific", "East Asia & Pacific",
"East Asia & Pacific", "East Asia & Pacific", "East Asia & Pacific",
"East Asia & Pacific", "East Asia & Pacific", "East Asia & Pacific",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "South Asia",
"South Asia", "South Asia", "South Asia", "South Asia", "South Asia",
"South Asia", "South Asia", "South Asia", "South Asia", "South Asia",
"South Asia", "South Asia", "South Asia", "South Asia", "South Asia",
"South Asia", "South Asia", "South Asia", "South Asia", "South Asia",
"South Asia", "South Asia", "South Asia", "South Asia", "South Asia",
"South Asia", "South Asia", "South Asia", "South Asia", "South Asia",
"South Asia", "South Asia", "South Asia", "South Asia", "South Asia",
"Middle East & North Africa", "Middle East & North Africa", "Middle East & North Africa",
"Middle East & North Africa", "Middle East & North Africa", "Middle East & North Africa",
"Middle East & North Africa", "Middle East & North Africa", "Middle East & North Africa",
"Middle East & North Africa", "Middle East & North Africa", "Middle East & North Africa",
"Middle East & North Africa", "Middle East & North Africa", "Middle East & North Africa",
"Middle East & North Africa", "Middle East & North Africa", "Middle East & North Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Middle East & North Africa", "Middle East & North Africa", "Middle East & North Africa",
"Middle East & North Africa", "Middle East & North Africa", "Middle East & North Africa",
"Middle East & North Africa", "Middle East & North Africa", "Middle East & North Africa",
"Middle East & North Africa", "Middle East & North Africa", "Middle East & North Africa",
"Middle East & North Africa", "Middle East & North Africa", "Middle East & North Africa",
"Middle East & North Africa", "Middle East & North Africa", "Middle East & North Africa",
"Middle East & North Africa", "Middle East & North Africa", "Middle East & North Africa",
"Middle East & North Africa", "Middle East & North Africa", "Middle East & North Africa",
"Middle East & North Africa", "Middle East & North Africa", "Middle East & North Africa",
"Middle East & North Africa", "Middle East & North Africa", "Middle East & North Africa",
"Middle East & North Africa", "Middle East & North Africa", "Middle East & North Africa",
"Middle East & North Africa", "Middle East & North Africa", "Middle East & North Africa",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"East Asia & Pacific", "East Asia & Pacific", "East Asia & Pacific",
"East Asia & Pacific", "East Asia & Pacific", "East Asia & Pacific",
"East Asia & Pacific", "East Asia & Pacific", "East Asia & Pacific",
"East Asia & Pacific", "East Asia & Pacific", "East Asia & Pacific",
"East Asia & Pacific", "East Asia & Pacific", "East Asia & Pacific",
"East Asia & Pacific", "East Asia & Pacific", "East Asia & Pacific",
"East Asia & Pacific", "East Asia & Pacific", "East Asia & Pacific",
"East Asia & Pacific", "East Asia & Pacific", "East Asia & Pacific",
"East Asia & Pacific", "East Asia & Pacific", "East Asia & Pacific",
"East Asia & Pacific", "East Asia & Pacific", "East Asia & Pacific",
"East Asia & Pacific", "East Asia & Pacific", "East Asia & Pacific",
"East Asia & Pacific", "East Asia & Pacific", "East Asia & Pacific",
"East Asia & Pacific", "East Asia & Pacific", "East Asia & Pacific",
"East Asia & Pacific", "East Asia & Pacific", "East Asia & Pacific",
"East Asia & Pacific", "East Asia & Pacific", "East Asia & Pacific",
"East Asia & Pacific", "East Asia & Pacific", "East Asia & Pacific",
"East Asia & Pacific", "East Asia & Pacific", "East Asia & Pacific",
"East Asia & Pacific", "East Asia & Pacific", "East Asia & Pacific",
"East Asia & Pacific", "East Asia & Pacific", "East Asia & Pacific",
"East Asia & Pacific", "East Asia & Pacific", "East Asia & Pacific",
"East Asia & Pacific", "East Asia & Pacific", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
NA, NA, NA, NA, NA, NA, NA, NA, "East Asia & Pacific", "East Asia & Pacific",
"East Asia & Pacific", "East Asia & Pacific", "East Asia & Pacific",
"East Asia & Pacific", "East Asia & Pacific", "East Asia & Pacific",
"East Asia & Pacific", "East Asia & Pacific", "East Asia & Pacific",
"East Asia & Pacific", "East Asia & Pacific", "East Asia & Pacific",
"East Asia & Pacific", "East Asia & Pacific", "East Asia & Pacific",
"East Asia & Pacific", "East Asia & Pacific", "East Asia & Pacific",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Middle East & North Africa", "Middle East & North Africa", "Middle East & North Africa",
"Middle East & North Africa", "Middle East & North Africa", "Middle East & North Africa",
"Middle East & North Africa", "Middle East & North Africa", "Middle East & North Africa",
"Middle East & North Africa", "Middle East & North Africa", "Middle East & North Africa",
"Middle East & North Africa", "Middle East & North Africa", "Middle East & North Africa",
"Middle East & North Africa", "Middle East & North Africa", "Middle East & North Africa",
"Middle East & North Africa", "Middle East & North Africa", "Middle East & North Africa",
"Middle East & North Africa", "Middle East & North Africa", "Middle East & North Africa",
"Middle East & North Africa", "Middle East & North Africa", "Middle East & North Africa",
"Middle East & North Africa", "Middle East & North Africa", "Middle East & North Africa",
"Middle East & North Africa", "Middle East & North Africa", "Middle East & North Africa",
"Middle East & North Africa", "Middle East & North Africa", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "East Asia & Pacific",
"East Asia & Pacific", "East Asia & Pacific", "East Asia & Pacific",
"East Asia & Pacific", "East Asia & Pacific", "East Asia & Pacific",
"East Asia & Pacific", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Middle East & North Africa", "Middle East & North Africa",
"Middle East & North Africa", "Middle East & North Africa", "Middle East & North Africa",
"Middle East & North Africa", "Middle East & North Africa", "Middle East & North Africa",
"Middle East & North Africa", "Middle East & North Africa", "Middle East & North Africa",
"Middle East & North Africa", "Middle East & North Africa", "Middle East & North Africa",
"Middle East & North Africa", "Middle East & North Africa", "Middle East & North Africa",
"Middle East & North Africa", "Middle East & North Africa", "Middle East & North Africa",
"Middle East & North Africa", "Middle East & North Africa", "Middle East & North Africa",
"Middle East & North Africa", "Middle East & North Africa", "Middle East & North Africa",
"Middle East & North Africa", "Middle East & North Africa", "Middle East & North Africa",
"Middle East & North Africa", "Middle East & North Africa", "Middle East & North Africa",
"Middle East & North Africa", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "North America", "North America", "North America",
"North America", "North America", "North America", "North America",
"North America", "North America", "North America", "North America",
"North America", "North America", "North America", "North America",
"North America", "North America", "North America", "North America",
"North America", "North America", "North America", "North America",
"North America", "North America", "North America", "North America",
"North America", "North America", "North America", "North America",
"North America", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "Europe & Central Asia", "Europe & Central Asia",
"Europe & Central Asia", "East Asia & Pacific", "East Asia & Pacific",
"East Asia & Pacific", "East Asia & Pacific", "East Asia & Pacific",
"East Asia & Pacific", "East Asia & Pacific", "East Asia & Pacific",
"East Asia & Pacific", "East Asia & Pacific", "East Asia & Pacific",
"East Asia & Pacific", "East Asia & Pacific", "East Asia & Pacific",
"East Asia & Pacific", "East Asia & Pacific", "East Asia & Pacific",
"East Asia & Pacific", "East Asia & Pacific", "East Asia & Pacific",
"East Asia & Pacific", "East Asia & Pacific", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"Latin America & Caribbean", "Latin America & Caribbean", "Latin America & Caribbean",
"East Asia & Pacific", "East Asia & Pacific", "East Asia & Pacific",
"East Asia & Pacific", "East Asia & Pacific", "East Asia & Pacific",
"East Asia & Pacific", "East Asia & Pacific", "East Asia & Pacific",
"East Asia & Pacific", "East Asia & Pacific", "East Asia & Pacific",
"East Asia & Pacific", "East Asia & Pacific", "East Asia & Pacific",
"East Asia & Pacific", "East Asia & Pacific", "East Asia & Pacific",
"East Asia & Pacific", "East Asia & Pacific", "East Asia & Pacific",
"East Asia & Pacific", "East Asia & Pacific", "East Asia & Pacific",
"East Asia & Pacific", "East Asia & Pacific", "East Asia & Pacific",
"East Asia & Pacific", "East Asia & Pacific", NA, NA, NA, NA,
NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA,
NA, NA, NA, NA, "Middle East & North Africa", "Middle East & North Africa",
"Middle East & North Africa", "Middle East & North Africa", "Middle East & North Africa",
"Middle East & North Africa", "Middle East & North Africa", "Middle East & North Africa",
"Middle East & North Africa", "Middle East & North Africa", "Middle East & North Africa",
"Middle East & North Africa", "Middle East & North Africa", "Middle East & North Africa",
"Middle East & North Africa", "Middle East & North Africa", "Middle East & North Africa",
"Middle East & North Africa", "Middle East & North Africa", "Middle East & North Africa",
"Middle East & North Africa", "Middle East & North Africa", "Middle East & North Africa",
"Middle East & North Africa", "Middle East & North Africa", "Middle East & North Africa",
"Middle East & North Africa", "Middle East & North Africa", "Middle East & North Africa",
"Middle East & North Africa", "Middle East & North Africa", "Middle East & North Africa",
"Middle East & North Africa", "Middle East & North Africa", "Middle East & North Africa",
"Middle East & North Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa",
"Sub-Saharan Africa", "Sub-Saharan Africa", "Sub-Saharan Africa"
), income = c("Low income", "Low income", "Low income", "Low income",
"Low income", "Low income", "Low income", "Low income", "Low income",
"Low income", "Low income", "Low income", "Low income", "Low income",
"Low income", "Low income", "Low income", "Low income", "Low income",
"Low income", "Low income", "Low income", "Low income", "Low income",
"Low income", "Low income", "Low income", "Low income", "Low income",
"Low income", "Low income", "Low income", "Low income", "Low income",
"Low income", "Low income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", NA, NA, NA, NA, NA, NA, NA, NA, NA, NA,
NA, NA, NA, NA, "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", NA, NA, NA, NA,
NA, NA, NA, NA, NA, NA, "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Low income", "Low income",
"Low income", "Low income", "Low income", "Low income", "Low income",
"Low income", "Low income", "Low income", "Low income", "Low income",
"Low income", "Low income", "Low income", "Low income", "Low income",
"Low income", "Low income", "Low income", "Low income", "Low income",
"Low income", "Low income", "Low income", "Low income", "Low income",
"Low income", "Low income", "Low income", "Low income", "Low income",
"Low income", "Low income", "Low income", "Low income", "Low income",
"Low income", "Low income", "Low income", "Low income", "Low income",
"Low income", "Low income", "Low income", "Low income", "Low income",
"Low income", "Low income", "Low income", "Low income", "Low income",
"Low income", "Low income", "Low income", "Low income", "Low income",
"Low income", "Low income", "Low income", "Low income", "Low income",
"Low income", "Low income", "Low income", "Low income", "Low income",
"Low income", "Low income", "Low income", "Low income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "Low income", "Low income",
"Low income", "Low income", "Low income", "Low income", "Low income",
"Low income", "Low income", "Low income", "Low income", "Low income",
"Low income", "Low income", "Low income", "Low income", "Low income",
"Low income", "Low income", "Low income", "Low income", "Low income",
"Low income", "Low income", "Low income", "Low income", "Low income",
"Low income", "Low income", "Low income", "Low income", "Low income",
"Low income", "Low income", "Low income", "Low income", "Low income",
"Low income", "Low income", "Low income", "Low income", "Low income",
"Low income", "Low income", "Low income", "Low income", "Low income",
"Low income", "Low income", "Low income", "Low income", "Low income",
"Low income", "Low income", "Low income", "Low income", "Low income",
"Low income", "Low income", "Low income", "Low income", "Low income",
"Low income", "Low income", "Low income", "Low income", "Low income",
"Low income", "Low income", "Low income", "Low income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
NA, NA, NA, NA, NA, NA, NA, NA, "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"Low income", "Low income", "Low income", "Low income", "Low income",
"Low income", "Low income", "Low income", "Low income", "Low income",
"Low income", "Low income", "Low income", "Low income", "Low income",
"Low income", "Low income", "Low income", "Low income", "Low income",
"Low income", "Low income", "Low income", "Low income", "Low income",
"Low income", "Low income", "Low income", "Low income", "Low income",
"Low income", "Low income", "Low income", "Low income", "Low income",
"Low income", "Low income", "Low income", "Low income", "Low income",
"Low income", "Low income", "Low income", "Low income", "Low income",
"Low income", "Low income", "Low income", "Low income", "Low income",
"Low income", "Low income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Low income", "Low income", "Low income",
"Low income", "Low income", "Low income", "Low income", "Low income",
"Low income", "Low income", "Low income", "Low income", "Low income",
"Low income", "Low income", "Low income", "Low income", "Low income",
"Low income", "Low income", "Low income", "Low income", "Low income",
"Low income", "Low income", "Low income", "Low income", "Low income",
"Low income", "Low income", "Low income", "Low income", "Low income",
"Low income", "Low income", "Low income", "Low income", "Low income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Low income", "Low income", "Low income", "Low income", "Low income",
"Low income", "Low income", "Low income", "Low income", "Low income",
"Low income", "Low income", "Low income", "Low income", "Low income",
"Low income", "Low income", "Low income", "Low income", "Low income",
"Low income", "Low income", "Low income", "Low income", "Low income",
"Low income", "Low income", "Low income", "Low income", "Low income",
"Low income", "Low income", "Low income", "Low income", "Low income",
"Low income", NA, NA, NA, NA, NA, NA, NA, NA, "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", NA, NA, NA, NA,
NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Low income", "Low income", "Low income",
"Low income", "Low income", "Low income", "Low income", "Low income",
"Low income", "Low income", "Low income", "Low income", "Low income",
"Low income", "Low income", "Low income", "Low income", "Low income",
"Low income", "Low income", "Low income", "Low income", "Low income",
"Low income", "Low income", "Low income", "Low income", "Low income",
"Low income", "Low income", "Low income", "Low income", "Low income",
"Low income", "Low income", "Low income", "Low income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA,
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Low income", "Low income",
"Low income", "Low income", "Low income", "Low income", "Low income",
"Low income", "Low income", "Low income", "Low income", "Low income",
"Low income", "Low income", "Low income", "Low income", "Low income",
"Low income", "Low income", "Low income", "Low income", "Low income",
"Low income", "Low income", "Low income", "Low income", "Low income",
"Low income", "Low income", "Low income", "Low income", "Low income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", NA, NA, NA, NA,
NA, NA, NA, NA, "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Low income", "Low income", "Low income", "Low income", "Low income",
"Low income", "Low income", "Low income", "Low income", "Low income",
"Low income", "Low income", "Low income", "Low income", "Low income",
"Low income", "Low income", "Low income", "Low income", "Low income",
"Low income", "Low income", "Low income", "Low income", "Low income",
"Low income", "Low income", "Low income", "Low income", "Low income",
"Low income", "Low income", "Low income", "Low income", "Low income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "Low income", "Low income", "Low income", "Low income",
"Low income", "Low income", "Low income", "Low income", "Low income",
"Low income", "Low income", "Low income", "Low income", "Low income",
"Low income", "Low income", "Low income", "Low income", "Low income",
"Low income", "Low income", "Low income", "Low income", "Low income",
"Low income", "Low income", "Low income", "Low income", "Low income",
"Low income", "Low income", "Low income", "Low income", "Low income",
"Low income", "Low income", "Low income", "Low income", "Low income",
"Low income", "Low income", "Low income", "Low income", "Low income",
"Low income", "Low income", "Low income", "Low income", "Low income",
"Low income", "Low income", "Low income", "Low income", "Low income",
"Low income", "Low income", "Low income", "Low income", "Low income",
"Low income", "Low income", "Low income", "Low income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Low income", "Low income", "Low income", "Low income", "Low income",
"Low income", "Low income", "Low income", "Low income", "Low income",
"Low income", "Low income", "Low income", "Low income", "Low income",
"Low income", "Low income", "Low income", "Low income", "Low income",
"Low income", "Low income", "Low income", "Low income", "Low income",
"Low income", "Low income", "Low income", "Low income", "Low income",
"Low income", "Low income", "Low income", "Low income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA,
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA,
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", NA, NA, NA, NA, NA, NA, NA, NA, NA, NA,
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Low income", "Low income",
"Low income", "Low income", "Low income", "Low income", "Low income",
"Low income", "Low income", "Low income", "Low income", "Low income",
"Low income", "Low income", "Low income", "Low income", "Low income",
"Low income", "Low income", "Low income", "Low income", "Low income",
"Low income", "Low income", "Low income", "Low income", "Low income",
"Low income", "Low income", "Low income", "Low income", "Low income",
"Low income", "Low income", "Low income", "Low income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Low income", "Low income",
"Low income", "Low income", "Low income", "Low income", "Low income",
"Low income", "Low income", "Low income", "Low income", "Low income",
"Low income", "Low income", "Low income", "Low income", "Low income",
"Low income", "Low income", "Low income", "Low income", "Low income",
"Low income", "Low income", "Low income", "Low income", "Low income",
"Low income", "Low income", "Low income", "Low income", "Low income",
"Low income", "Low income", "Low income", "Low income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", NA, NA, NA, NA,
NA, NA, NA, NA, "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", NA, NA, NA, NA, NA, NA, NA, NA, NA, NA,
NA, NA, NA, NA, NA, NA, "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Low income", "Low income",
"Low income", "Low income", "Low income", "Low income", "Low income",
"Low income", "Low income", "Low income", "Low income", "Low income",
"Low income", "Low income", "Low income", "Low income", "Low income",
"Low income", "Low income", "Low income", "Low income", "Low income",
"Low income", "Low income", "Low income", "Low income", "Low income",
"Low income", "Low income", "Low income", "Low income", "Low income",
"Low income", "Low income", "Low income", "Low income", NA, NA,
NA, NA, NA, NA, NA, NA, "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
NA, NA, NA, NA, NA, NA, NA, NA, "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"Low income", "Low income", "Low income", "Low income", "Low income",
"Low income", "Low income", "Low income", "Low income", "Low income",
"Low income", "Low income", "Low income", "Low income", "Low income",
"Low income", "Low income", "Low income", "Low income", "Low income",
"Low income", "Low income", "Low income", "Low income", "Low income",
"Low income", "Low income", "Low income", "Low income", "Low income",
"Low income", "Low income", "Low income", "Low income", "Low income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Low income", "Low income",
"Low income", "Low income", "Low income", "Low income", "Low income",
"Low income", "Low income", "Low income", "Low income", "Low income",
"Low income", "Low income", "Low income", "Low income", "Low income",
"Low income", "Low income", "Low income", "Low income", "Low income",
"Low income", "Low income", "Low income", "Low income", "Low income",
"Low income", "Low income", "Low income", "Low income", "Low income",
"Low income", "Low income", "Low income", "Low income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Low income", "Low income",
"Low income", "Low income", "Low income", "Low income", "Low income",
"Low income", "Low income", "Low income", "Low income", "Low income",
"Low income", "Low income", "Low income", "Low income", "Low income",
"Low income", "Low income", "Low income", "Low income", "Low income",
"Low income", "Low income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Low income", "Low income", "Low income",
"Low income", "Low income", "Low income", "Low income", "Low income",
"Low income", "Low income", "Low income", "Low income", "Low income",
"Low income", "Low income", "Low income", "Low income", "Low income",
"Low income", "Low income", "Low income", "Low income", "Low income",
"Low income", "Low income", "Low income", "Low income", "Low income",
"Low income", "Low income", "Low income", "Low income", "Low income",
"Low income", "Low income", "Low income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "Low income", "Low income", "Low income", "Low income",
"Low income", "Low income", "Low income", "Low income", "Low income",
"Low income", "Low income", "Low income", "Low income", "Low income",
"Low income", "Low income", "Low income", "Low income", "Low income",
"Low income", "Low income", "Low income", "Low income", "Low income",
"Low income", "Low income", "Low income", "Low income", "Low income",
"Low income", "Low income", "Low income", "Low income", "Low income",
"Low income", "Low income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Low income", "Low income", "Low income", "Low income", "Low income",
"Low income", "Low income", "Low income", "Low income", "Low income",
"Low income", "Low income", "Low income", "Low income", "Low income",
"Low income", "Low income", "Low income", "Low income", "Low income",
"Low income", "Low income", "Low income", "Low income", "Low income",
"Low income", "Low income", "Low income", "Low income", "Low income",
"Low income", "Low income", "Low income", "Low income", "Low income",
"Low income", "Low income", NA, NA, NA, NA, NA, NA, NA, NA, "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Upper middle income", "Upper middle income",
"Upper middle income", "Low income", "Low income", "Low income",
"Low income", "Low income", "Low income", "Low income", "Low income",
"Low income", "Low income", "Low income", "Low income", "Low income",
"Low income", "Low income", "Low income", "Low income", "Low income",
"Low income", "Low income", "Low income", "Low income", "Low income",
"Low income", "Low income", "Low income", "Low income", "Low income",
"Low income", "Low income", "Low income", "Low income", "Low income",
"Low income", "Low income", "Low income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"High income", "High income", "High income", "High income", "High income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA,
NA, NA, NA, NA, NA, NA, NA, NA, "Low income", "Low income", "Low income",
"Low income", "Low income", "Low income", "Low income", "Low income",
"Low income", "Low income", "Low income", "Low income", "Low income",
"Low income", "Low income", "Low income", "Low income", "Low income",
"Low income", "Low income", "Low income", "Low income", "Low income",
"Low income", "Low income", "Low income", "Low income", "Low income",
"Low income", "Low income", "Low income", "Low income", "Low income",
"Low income", "Low income", "Low income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income", "Lower middle income", "Lower middle income",
"Lower middle income"), lending = c("IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA,
NA, NA, "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", NA, NA, NA, NA, NA, NA, NA, NA, NA, NA,
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"Blend", "Blend", "Blend", "Blend", "Blend", "Blend", "Blend",
"Blend", "Blend", "Blend", "Blend", "Blend", "Blend", "Blend",
"Blend", "Blend", "Blend", "Blend", "Blend", "Blend", "Blend",
"Blend", "Blend", "Blend", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "Blend", "Blend", "Blend", "Blend", "Blend", "Blend",
"Blend", "Blend", "Blend", "Blend", "Blend", "Blend", "Blend",
"Blend", "Blend", "Blend", "Blend", "Blend", "Blend", "Blend",
"Blend", "Blend", "Blend", "Blend", "Blend", "Blend", "Blend",
"Blend", "Blend", "Blend", "Blend", "Blend", "Blend", "Blend",
"Blend", "Blend", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "Blend", "Blend", "Blend",
"Blend", "Blend", "Blend", "Blend", "Blend", "Blend", "Blend",
"Blend", "Blend", "Blend", "Blend", "Blend", "Blend", "Blend",
"Blend", "Blend", "Blend", "Blend", "Blend", "Blend", "Blend",
"Blend", "Blend", "Blend", "Blend", "Blend", "Blend", "Blend",
"Blend", "Blend", "Blend", "Blend", "Blend", NA, NA, NA, NA,
NA, NA, NA, NA, "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "Blend", "Blend", "Blend", "Blend", "Blend", "Blend",
"Blend", "Blend", "Blend", "Blend", "Blend", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", NA, NA, NA, NA, NA, NA, NA, NA, "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Blend",
"Blend", "Blend", "Blend", "Blend", "Blend", "Blend", "Blend",
"Blend", "Blend", "Blend", "Blend", "Blend", "Blend", "Blend",
"Blend", "Blend", "Blend", "Blend", "Blend", "Blend", "Blend",
"Blend", "Blend", "Blend", "Blend", "Blend", "Blend", "Blend",
"Blend", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA,
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Blend", "Blend", "Blend", "Blend", "Blend",
"Blend", "Blend", "Blend", "Blend", "Blend", "Blend", "Blend",
"Blend", "Blend", "Blend", "Blend", "Blend", "Blend", "Blend",
"Blend", "Blend", "Blend", "Blend", "Blend", "Blend", NA, NA,
NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", NA, NA, NA, NA, NA, NA, NA, NA, "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "Blend", "Blend",
"Blend", "Blend", "Blend", "Blend", "Blend", "Blend", "Blend",
"Blend", "Blend", "Blend", "Blend", "Blend", "Blend", "Blend",
"Blend", "Blend", "Blend", "Blend", "Blend", "Blend", "Blend",
"Blend", "Blend", "Blend", "Blend", "Blend", "Blend", "Blend",
"Blend", "Blend", "Blend", "Blend", "Blend", "Blend", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA,
NA, NA, "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", NA, NA, NA, NA, NA, NA, NA, NA, NA, NA,
NA, NA, NA, NA, NA, NA, "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"Blend", "Blend", "Blend", "Blend", "Blend", "Blend", "Blend",
"Blend", "Blend", "Blend", "Blend", "Blend", "Blend", "Blend",
"Blend", "Blend", "Blend", "Blend", "Blend", "Blend", "Blend",
"Blend", "Blend", "Blend", "Blend", "Blend", "Blend", "Blend",
"Blend", "Blend", "Blend", "Blend", "Blend", "Blend", "Blend",
"Blend", NA, NA, NA, NA, NA, NA, NA, NA, "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Blend",
"Blend", "Blend", "Blend", "Blend", "Blend", "Blend", "Blend",
"Blend", "Blend", "Blend", "Blend", "Blend", "Blend", "Blend",
"Blend", "Blend", "Blend", "Blend", "Blend", "Blend", "Blend",
"Blend", "Blend", "Blend", "Blend", "Blend", "Blend", "Blend",
"Blend", "Blend", "Blend", "Blend", "Blend", "Blend", "Blend",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "Blend", "Blend", "Blend", "Blend", "Blend",
"Blend", "Blend", "Blend", "Blend", "Blend", "Blend", "Blend",
"Blend", "Blend", "Blend", "Blend", "Blend", "Blend", "Blend",
"Blend", "Blend", "Blend", "Blend", "Blend", "Blend", "Blend",
"Blend", "Blend", "Blend", "Blend", "Blend", "Blend", "Blend",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA,
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
NA, NA, NA, NA, NA, NA, NA, NA, "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "Blend", "Blend", "Blend", "Blend", "Blend",
"Blend", "Blend", "Blend", "Blend", "Blend", "Blend", "Blend",
"Blend", "Blend", "Blend", "Blend", "Blend", "Blend", "Blend",
"Blend", "Blend", "Blend", "Blend", "Blend", "Blend", "Blend",
NA, NA, NA, NA, NA, NA, NA, NA, "Blend", "Blend", "Blend", "Blend",
"Blend", "Blend", "Blend", "Blend", "Blend", "Blend", "Blend",
"Blend", "Blend", "Blend", "Blend", "Blend", "Blend", "Blend",
"Blend", "Blend", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"Blend", "Blend", "Blend", "Blend", "Blend", "Blend", "Blend",
"Blend", "Blend", "Blend", "Blend", "Blend", "Blend", "Blend",
"Blend", "Blend", "Blend", "Blend", "Blend", "Blend", "Blend",
"Blend", "Blend", "Blend", "Blend", "Blend", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", NA, NA, NA,
NA, NA, NA, NA, NA, "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "Blend", "Blend", "Blend",
"Blend", "Blend", "Blend", "Blend", "Blend", "Blend", "Blend",
"Blend", "Blend", "Blend", "Blend", "Blend", "Blend", "Blend",
"Blend", "Blend", "Blend", "Blend", "Blend", "Blend", "Blend",
"Blend", "Blend", "Blend", "Blend", "Blend", "Blend", "Blend",
"Blend", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", NA, NA, NA, NA, NA, NA, NA, NA, NA, NA,
NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "Blend",
"Blend", "Blend", "Blend", "Blend", "Blend", "Blend", "Blend",
"Blend", "Blend", "Blend", "Blend", "Blend", "Blend", "Blend",
"Blend", "Blend", "Blend", "Blend", "Blend", "Blend", "Blend",
"Blend", "Blend", "Blend", "Blend", "Blend", "Blend", "Blend",
"Blend", "Blend", "Blend", "Blend", "Blend", "Blend")), row.names = c(NA,
-6673L), class = c("tbl_df", "tbl", "data.frame"))
df <- structure(list(Country = c("Afghanistan", "Afghanistan", "Afghanistan",
"Afghanistan", "Afghanistan", "Afghanistan", "Afghanistan", "Afghanistan",
"Afghanistan", "Afghanistan", "Afghanistan", "Afghanistan", "Afghanistan",
"Afghanistan", "Afghanistan", "Afghanistan", "Afghanistan", "Afghanistan",
"Afghanistan", "Afghanistan", "Afghanistan", "Afghanistan", "Afghanistan",
"Afghanistan", "Afghanistan", "Afghanistan", "Afghanistan", "Afghanistan",
"Afghanistan", "Afghanistan", "Afghanistan", "Afghanistan", "Afghanistan",
"Afghanistan", "Afghanistan", "Afghanistan", "Albania", "Albania",
"Albania", "Albania", "Albania", "Albania", "Albania", "Albania",
"Albania", "Albania", "Albania", "Albania", "Albania", "Albania",
"Albania", "Albania", "Albania", "Albania", "Albania", "Albania",
"Albania", "Albania", "Albania", "Albania", "Albania", "Albania",
"Albania", "Albania", "Albania", "Albania", "Albania", "Albania",
"Albania", "Albania", "Albania", "Algeria", "Algeria", "Algeria",
"Algeria", "Algeria", "Algeria", "Algeria", "Algeria", "Algeria",
"Algeria", "Algeria", "Algeria", "Algeria", "Algeria", "Algeria",
"Algeria", "Algeria", "Algeria", "Algeria", "Algeria", "Algeria",
"Algeria", "Algeria", "Algeria", "Algeria", "Algeria", "Algeria",
"Algeria", "Algeria", "Algeria", "Algeria", "American Samoa",
"American Samoa", "American Samoa", "American Samoa", "American Samoa",
"American Samoa", "American Samoa", "American Samoa", "Andorra",
"Andorra", "Andorra", "Andorra", "Andorra", "Andorra", "Andorra",
"Andorra", "Angola", "Angola", "Angola", "Angola", "Angola",
"Angola", "Angola", "Angola", "Angola", "Angola", "Angola", "Angola",
"Angola", "Angola", "Angola", "Angola", "Angola", "Angola", "Angola",
"Angola", "Angola", "Angola", "Angola", "Angola", "Angola", "Angola",
"Angola", "Angola", "Angola", "Angola", "Angola", "Angola", "Angola",
"Angola", "Angola", "Anguilla", "Anguilla", "Anguilla", "Anguilla",
"Anguilla", "Anguilla", "Anguilla", "Anguilla", "Anguilla", "Anguilla",
"Anguilla", "Anguilla", "Anguilla", "Anguilla", "Antigua and Barbuda",
"Antigua and Barbuda", "Antigua and Barbuda", "Antigua and Barbuda",
"Antigua and Barbuda", "Antigua and Barbuda", "Antigua and Barbuda",
"Antigua and Barbuda", "Antigua and Barbuda", "Antigua and Barbuda",
"Antigua and Barbuda", "Antigua and Barbuda", "Antigua and Barbuda",
"Antigua and Barbuda", "Antigua and Barbuda", "Antigua and Barbuda",
"Antigua and Barbuda", "Antigua and Barbuda", "Antigua and Barbuda",
"Antigua and Barbuda", "Antigua and Barbuda", "Antigua and Barbuda",
"Antigua and Barbuda", "Argentina", "Argentina", "Argentina",
"Argentina", "Argentina", "Argentina", "Argentina", "Argentina",
"Argentina", "Argentina", "Argentina", "Argentina", "Argentina",
"Argentina", "Argentina", "Argentina", "Argentina", "Argentina",
"Argentina", "Argentina", "Argentina", "Argentina", "Argentina",
"Argentina", "Argentina", "Argentina", "Argentina", "Argentina",
"Argentina", "Argentina", "Argentina", "Argentina", "Argentina",
"Argentina", "Armenia", "Armenia", "Armenia", "Armenia", "Armenia",
"Armenia", "Armenia", "Armenia", "Armenia", "Armenia", "Armenia",
"Armenia", "Armenia", "Armenia", "Armenia", "Armenia", "Armenia",
"Armenia", "Armenia", "Armenia", "Armenia", "Armenia", "Armenia",
"Armenia", "Armenia", "Armenia", "Armenia", "Armenia", "Armenia",
"Armenia", "Armenia", "Armenia", "Armenia", "Armenia", "Armenia",
"Aruba", "Aruba", "Aruba", "Aruba", "Aruba", "Aruba", "Aruba",
"Aruba", "Aruba", "Aruba", "Aruba", "Aruba", "Aruba", "Aruba",
"Aruba", "Aruba", "Aruba", "Aruba", "Aruba", "Aruba", "Aruba",
"Aruba", "Aruba", "Aruba", "Aruba", "Aruba", "Aruba", "Aruba",
"Aruba", "Aruba", "Australia", "Australia", "Australia", "Australia",
"Australia", "Australia", "Australia", "Australia", "Australia",
"Australia", "Australia", "Australia", "Australia", "Australia",
"Australia", "Australia", "Australia", "Australia", "Australia",
"Australia", "Australia", "Australia", "Australia", "Australia",
"Australia", "Australia", "Australia", "Australia", "Australia",
"Australia", "Australia", "Australia", "Australia", "Australia",
"Austria", "Austria", "Austria", "Austria", "Austria", "Austria",
"Austria", "Austria", "Austria", "Austria", "Austria", "Austria",
"Austria", "Austria", "Austria", "Austria", "Austria", "Austria",
"Austria", "Austria", "Austria", "Austria", "Austria", "Austria",
"Austria", "Austria", "Austria", "Austria", "Austria", "Austria",
"Austria", "Austria", "Austria", "Austria", "Austria", "Austria",
"Azerbaijan", "Azerbaijan", "Azerbaijan", "Azerbaijan", "Azerbaijan",
"Azerbaijan", "Azerbaijan", "Azerbaijan", "Azerbaijan", "Azerbaijan",
"Azerbaijan", "Azerbaijan", "Azerbaijan", "Azerbaijan", "Azerbaijan",
"Azerbaijan", "Azerbaijan", "Azerbaijan", "Azerbaijan", "Azerbaijan",
"Azerbaijan", "Azerbaijan", "Azerbaijan", "Azerbaijan", "Azerbaijan",
"Azerbaijan", "Azerbaijan", "Azerbaijan", "Azerbaijan", "Azerbaijan",
"Azerbaijan", "Azerbaijan", "Azerbaijan", "Azerbaijan", "Azerbaijan",
"Azerbaijan", "Bahamas", "Bahamas", "Bahamas", "Bahamas", "Bahamas",
"Bahamas", "Bahamas", "Bahamas", "Bahamas", "Bahamas", "Bahamas",
"Bahamas", "Bahamas", "Bahamas", "Bahamas", "Bahamas", "Bahamas",
"Bahamas", "Bahamas", "Bahamas", "Bahamas", "Bahamas", "Bahamas",
"Bahamas", "Bahamas", "Bahamas", "Bahamas", "Bahamas", "Bahamas",
"Bahamas", "Bahamas", "Bahamas", "Bahamas", "Bahamas", "Bahamas",
"Bahrain", "Bahrain", "Bahrain", "Bahrain", "Bahrain", "Bahrain",
"Bahrain", "Bahrain", "Bahrain", "Bahrain", "Bahrain", "Bahrain",
"Bahrain", "Bahrain", "Bahrain", "Bahrain", "Bahrain", "Bahrain",
"Bahrain", "Bahrain", "Bahrain", "Bahrain", "Bahrain", "Bahrain",
"Bahrain", "Bahrain", "Bahrain", "Bahrain", "Bahrain", "Bahrain",
"Bangladesh", "Bangladesh", "Bangladesh", "Bangladesh", "Bangladesh",
"Bangladesh", "Bangladesh", "Bangladesh", "Bangladesh", "Bangladesh",
"Bangladesh", "Bangladesh", "Bangladesh", "Bangladesh", "Bangladesh",
"Bangladesh", "Bangladesh", "Bangladesh", "Bangladesh", "Bangladesh",
"Bangladesh", "Bangladesh", "Bangladesh", "Bangladesh", "Bangladesh",
"Bangladesh", "Bangladesh", "Bangladesh", "Bangladesh", "Bangladesh",
"Bangladesh", "Bangladesh", "Barbados", "Barbados", "Barbados",
"Barbados", "Barbados", "Barbados", "Barbados", "Barbados", "Barbados",
"Barbados", "Barbados", "Barbados", "Barbados", "Barbados", "Barbados",
"Barbados", "Barbados", "Barbados", "Barbados", "Barbados", "Barbados",
"Barbados", "Barbados", "Barbados", "Barbados", "Belarus", "Belarus",
"Belarus", "Belarus", "Belarus", "Belarus", "Belarus", "Belarus",
"Belarus", "Belarus", "Belarus", "Belarus", "Belarus", "Belarus",
"Belarus", "Belarus", "Belarus", "Belarus", "Belarus", "Belarus",
"Belarus", "Belarus", "Belarus", "Belarus", "Belarus", "Belarus",
"Belarus", "Belarus", "Belarus", "Belarus", "Belarus", "Belarus",
"Belarus", "Belarus", "Belarus", "Belarus", "Belgium", "Belgium",
"Belgium", "Belgium", "Belgium", "Belgium", "Belgium", "Belgium",
"Belgium", "Belgium", "Belgium", "Belgium", "Belgium", "Belgium",
"Belgium", "Belgium", "Belgium", "Belgium", "Belgium", "Belgium",
"Belgium", "Belgium", "Belgium", "Belgium", "Belgium", "Belgium",
"Belgium", "Belgium", "Belgium", "Belgium", "Belgium", "Belgium",
"Belgium", "Belgium", "Belgium", "Belgium", "Belize", "Belize",
"Belize", "Belize", "Belize", "Belize", "Belize", "Belize", "Belize",
"Belize", "Belize", "Belize", "Belize", "Belize", "Belize", "Belize",
"Belize", "Belize", "Belize", "Belize", "Belize", "Belize", "Belize",
"Belize", "Belize", "Belize", "Belize", "Belize", "Belize", "Belize",
"Belize", "Belize", "Belize", "Benin", "Benin", "Benin", "Benin",
"Benin", "Benin", "Benin", "Benin", "Benin", "Benin", "Benin",
"Benin", "Benin", "Benin", "Benin", "Benin", "Benin", "Benin",
"Benin", "Benin", "Benin", "Benin", "Benin", "Benin", "Benin",
"Benin", "Benin", "Benin", "Benin", "Benin", "Benin", "Benin",
"Benin", "Bermuda", "Bermuda", "Bermuda", "Bermuda", "Bermuda",
"Bermuda", "Bermuda", "Bermuda", "Bhutan", "Bhutan", "Bhutan",
"Bhutan", "Bhutan", "Bhutan", "Bhutan", "Bhutan", "Bhutan", "Bhutan",
"Bhutan", "Bhutan", "Bhutan", "Bhutan", "Bhutan", "Bhutan", "Bolivia (Plurin. State of)",
"Bolivia (Plurin. State of)", "Bolivia (Plurin. State of)", "Bolivia (Plurin. State of)",
"Bolivia (Plurin. State of)", "Bolivia (Plurin. State of)", "Bolivia (Plurin. State of)",
"Bolivia (Plurin. State of)", "Bolivia (Plurin. State of)", "Bolivia (Plurin. State of)",
"Bolivia (Plurin. State of)", "Bolivia (Plurin. State of)", "Bolivia (Plurin. State of)",
"Bolivia (Plurin. State of)", "Bolivia (Plurin. State of)", "Bolivia (Plurin. State of)",
"Bolivia (Plurin. State of)", "Bolivia (Plurin. State of)", "Bolivia (Plurin. State of)",
"Bolivia (Plurin. State of)", "Bolivia (Plurin. State of)", "Bolivia (Plurin. State of)",
"Bolivia (Plurin. State of)", "Bolivia (Plurin. State of)", "Bolivia (Plurin. State of)",
"Bolivia (Plurin. State of)", "Bolivia (Plurin. State of)", "Bolivia (Plurin. State of)",
"Bolivia (Plurin. State of)", "Bolivia (Plurin. State of)", "Bolivia (Plurin. State of)",
"Bolivia (Plurin. State of)", "Bolivia (Plurin. State of)", "Bolivia (Plurin. State of)",
"Bolivia (Plurin. State of)", "Bonaire, St. Eustatius & Saba",
"Bonaire, St. Eustatius & Saba", "Bonaire, St. Eustatius & Saba",
"Bonaire, St. Eustatius & Saba", "Bonaire, St. Eustatius & Saba",
"Bonaire, St. Eustatius & Saba", "Bonaire, St. Eustatius & Saba",
"Bonaire, St. Eustatius & Saba", "Bonaire, St. Eustatius & Saba",
"Bonaire, St. Eustatius & Saba", "Bosnia and Herzegovina", "Bosnia and Herzegovina",
"Bosnia and Herzegovina", "Bosnia and Herzegovina", "Bosnia and Herzegovina",
"Bosnia and Herzegovina", "Bosnia and Herzegovina", "Bosnia and Herzegovina",
"Bosnia and Herzegovina", "Bosnia and Herzegovina", "Bosnia and Herzegovina",
"Bosnia and Herzegovina", "Bosnia and Herzegovina", "Bosnia and Herzegovina",
"Bosnia and Herzegovina", "Bosnia and Herzegovina", "Bosnia and Herzegovina",
"Bosnia and Herzegovina", "Bosnia and Herzegovina", "Bosnia and Herzegovina",
"Bosnia and Herzegovina", "Bosnia and Herzegovina", "Bosnia and Herzegovina",
"Bosnia and Herzegovina", "Bosnia and Herzegovina", "Bosnia and Herzegovina",
"Bosnia and Herzegovina", "Bosnia and Herzegovina", "Bosnia and Herzegovina",
"Bosnia and Herzegovina", "Bosnia and Herzegovina", "Bosnia and Herzegovina",
"Bosnia and Herzegovina", "Bosnia and Herzegovina", "Bosnia and Herzegovina",
"Bosnia and Herzegovina", "Botswana", "Botswana", "Botswana",
"Botswana", "Botswana", "Botswana", "Botswana", "Botswana", "Botswana",
"Botswana", "Botswana", "Botswana", "Botswana", "Botswana", "Botswana",
"Botswana", "Botswana", "Botswana", "Botswana", "Botswana", "Botswana",
"Botswana", "Botswana", "Botswana", "Botswana", "Botswana", "Botswana",
"Botswana", "Botswana", "Botswana", "Botswana", "Botswana", "Botswana",
"Botswana", "Botswana", "Brazil", "Brazil", "Brazil", "Brazil",
"Brazil", "Brazil", "Brazil", "Brazil", "Brazil", "Brazil", "Brazil",
"Brazil", "Brazil", "Brazil", "Brazil", "Brazil", "Brazil", "Brazil",
"Brazil", "Brazil", "Brazil", "Brazil", "Brazil", "Brazil", "Brazil",
"Brazil", "Brazil", "Brazil", "Brazil", "Brazil", "Brazil", "Brazil",
"Brazil", "Brazil", "Brazil", "Brazil", "British Virgin Islands",
"British Virgin Islands", "British Virgin Islands", "British Virgin Islands",
"British Virgin Islands", "British Virgin Islands", "British Virgin Islands",
"British Virgin Islands", "British Virgin Islands", "British Virgin Islands",
"British Virgin Islands", "British Virgin Islands", "British Virgin Islands",
"British Virgin Islands", "British Virgin Islands", "British Virgin Islands",
"British Virgin Islands", "British Virgin Islands", "Brunei Darussalam",
"Brunei Darussalam", "Brunei Darussalam", "Brunei Darussalam",
"Brunei Darussalam", "Brunei Darussalam", "Brunei Darussalam",
"Brunei Darussalam", "Brunei Darussalam", "Brunei Darussalam",
"Brunei Darussalam", "Brunei Darussalam", "Brunei Darussalam",
"Brunei Darussalam", "Brunei Darussalam", "Brunei Darussalam",
"Brunei Darussalam", "Brunei Darussalam", "Brunei Darussalam",
"Brunei Darussalam", "Brunei Darussalam", "Brunei Darussalam",
"Brunei Darussalam", "Brunei Darussalam", "Bulgaria", "Bulgaria",
"Bulgaria", "Bulgaria", "Bulgaria", "Bulgaria", "Bulgaria", "Bulgaria",
"Bulgaria", "Bulgaria", "Bulgaria", "Bulgaria", "Bulgaria", "Bulgaria",
"Bulgaria", "Bulgaria", "Bulgaria", "Bulgaria", "Bulgaria", "Bulgaria",
"Bulgaria", "Bulgaria", "Bulgaria", "Bulgaria", "Bulgaria", "Bulgaria",
"Bulgaria", "Bulgaria", "Bulgaria", "Bulgaria", "Bulgaria", "Bulgaria",
"Bulgaria", "Bulgaria", "Burkina Faso", "Burkina Faso", "Burkina Faso",
"Burkina Faso", "Burkina Faso", "Burkina Faso", "Burkina Faso",
"Burkina Faso", "Burkina Faso", "Burkina Faso", "Burkina Faso",
"Burkina Faso", "Burkina Faso", "Burkina Faso", "Burkina Faso",
"Burkina Faso", "Burkina Faso", "Burkina Faso", "Burkina Faso",
"Burkina Faso", "Burkina Faso", "Burkina Faso", "Burkina Faso",
"Burkina Faso", "Burkina Faso", "Burkina Faso", "Burkina Faso",
"Burkina Faso", "Burkina Faso", "Burkina Faso", "Burkina Faso",
"Burkina Faso", "Burkina Faso", "Burkina Faso", "Burkina Faso",
"Burundi", "Burundi", "Burundi", "Burundi", "Burundi", "Burundi",
"Burundi", "Burundi", "Burundi", "Burundi", "Burundi", "Burundi",
"Burundi", "Burundi", "Burundi", "Burundi", "Burundi", "Burundi",
"Burundi", "Burundi", "Burundi", "Burundi", "Burundi", "Burundi",
"Burundi", "Burundi", "Burundi", "Burundi", "Burundi", "Burundi",
"Burundi", "Burundi", "Burundi", "Burundi", "Burundi", "Burundi",
"Cabo Verde", "Cabo Verde", "Cabo Verde", "Cabo Verde", "Cabo Verde",
"Cabo Verde", "Cabo Verde", "Cabo Verde", "Cabo Verde", "Cabo Verde",
"Cabo Verde", "Cabo Verde", "Cabo Verde", "Cabo Verde", "Cabo Verde",
"Cabo Verde", "Cabo Verde", "Cabo Verde", "Cabo Verde", "Cabo Verde",
"Cabo Verde", "Cabo Verde", "Cabo Verde", "Cabo Verde", "Cambodia",
"Cambodia", "Cambodia", "Cambodia", "Cambodia", "Cambodia", "Cambodia",
"Cambodia", "Cambodia", "Cambodia", "Cambodia", "Cambodia", "Cambodia",
"Cambodia", "Cambodia", "Cambodia", "Cambodia", "Cambodia", "Cambodia",
"Cambodia", "Cambodia", "Cambodia", "Cambodia", "Cambodia", "Cambodia",
"Cambodia", "Cambodia", "Cambodia", "Cambodia", "Cambodia", "Cambodia",
"Cambodia", "Cambodia", "Cambodia", "Cameroon", "Cameroon", "Cameroon",
"Cameroon", "Cameroon", "Cameroon", "Cameroon", "Cameroon", "Cameroon",
"Cameroon", "Cameroon", "Cameroon", "Cameroon", "Cameroon", "Cameroon",
"Cameroon", "Cameroon", "Cameroon", "Cameroon", "Cameroon", "Cameroon",
"Cameroon", "Cameroon", "Cameroon", "Cameroon", "Cameroon", "Cameroon",
"Cameroon", "Cameroon", "Cameroon", "Cameroon", "Cameroon", "Cameroon",
"Cameroon", "Cameroon", "Cameroon", "Canada", "Canada", "Canada",
"Canada", "Canada", "Canada", "Canada", "Canada", "Canada", "Canada",
"Canada", "Canada", "Canada", "Canada", "Canada", "Canada", "Canada",
"Canada", "Canada", "Canada", "Canada", "Canada", "Canada", "Canada",
"Canada", "Canada", "Canada", "Canada", "Canada", "Canada", "Canada",
"Canada", "Canada", "Canada", "Canada", "Cayman Islands", "Cayman Islands",
"Cayman Islands", "Cayman Islands", "Cayman Islands", "Cayman Islands",
"Cayman Islands", "Cayman Islands", "Cayman Islands", "Cayman Islands",
"Cayman Islands", "Cayman Islands", "Cayman Islands", "Cayman Islands",
"Cayman Islands", "Cayman Islands", "Cayman Islands", "Cayman Islands",
"Cayman Islands", "Cayman Islands", "Cayman Islands", "Cayman Islands",
"Cayman Islands", "Central African Republic", "Central African Republic",
"Central African Republic", "Central African Republic", "Central African Republic",
"Central African Republic", "Central African Republic", "Central African Republic",
"Central African Republic", "Central African Republic", "Central African Republic",
"Central African Republic", "Central African Republic", "Central African Republic",
"Central African Republic", "Central African Republic", "Central African Republic",
"Central African Republic", "Central African Republic", "Central African Republic",
"Central African Republic", "Central African Republic", "Central African Republic",
"Central African Republic", "Central African Republic", "Central African Republic",
"Central African Republic", "Central African Republic", "Central African Republic",
"Central African Republic", "Central African Republic", "Central African Republic",
"Central African Republic", "Central African Republic", "Central African Republic",
"Central African Republic", "Chad", "Chad", "Chad", "Chad", "Chad",
"Chad", "Chad", "Chad", "Chad", "Chad", "Chad", "Chad", "Chad",
"Chad", "Chad", "Chad", "Chad", "Chad", "Chad", "Chad", "Chad",
"Chad", "Chad", "Chad", "Chad", "Chad", "Chad", "Chad", "Chad",
"Chad", "Chad", "Chad", "Chad", "Chad", "Chad", "Chile", "Chile",
"Chile", "Chile", "Chile", "Chile", "Chile", "Chile", "Chile",
"Chile", "Chile", "Chile", "Chile", "Chile", "Chile", "Chile",
"Chile", "Chile", "Chile", "Chile", "Chile", "Chile", "Chile",
"Chile", "Chile", "Chile", "Chile", "Chile", "Chile", "Chile",
"Chile", "Chile", "Chile", "China", "China", "China", "China",
"China", "China", "China", "China", "China", "China", "China",
"China", "China", "China", "China", "China", "China", "China",
"China", "China", "China", "China", "China", "China", "China",
"China", "China", "China", "China", "China", "China", "China",
"China, Hong Kong SAR", "China, Hong Kong SAR", "China, Hong Kong SAR",
"China, Hong Kong SAR", "China, Hong Kong SAR", "China, Hong Kong SAR",
"China, Hong Kong SAR", "China, Hong Kong SAR", "China, Hong Kong SAR",
"China, Hong Kong SAR", "China, Hong Kong SAR", "China, Hong Kong SAR",
"China, Hong Kong SAR", "China, Hong Kong SAR", "China, Hong Kong SAR",
"China, Hong Kong SAR", "China, Hong Kong SAR", "China, Hong Kong SAR",
"China, Hong Kong SAR", "China, Hong Kong SAR", "China, Hong Kong SAR",
"China, Hong Kong SAR", "China, Hong Kong SAR", "China, Hong Kong SAR",
"China, Hong Kong SAR", "China, Hong Kong SAR", "China, Hong Kong SAR",
"China, Hong Kong SAR", "China, Hong Kong SAR", "China, Hong Kong SAR",
"China, Hong Kong SAR", "China, Hong Kong SAR", "China, Hong Kong SAR",
"China, Hong Kong SAR", "China, Hong Kong SAR", "China, Hong Kong SAR",
"China, Hong Kong SAR", "China, Hong Kong SAR", "China, Macao SAR",
"China, Macao SAR", "China, Macao SAR", "China, Macao SAR", "China, Macao SAR",
"China, Macao SAR", "China, Macao SAR", "China, Macao SAR", "China, Macao SAR",
"Republic of Korea", "Republic of Korea", "Republic of Korea",
"Republic of Korea", "Republic of Korea", "Republic of Moldova",
"Republic of Moldova", "Republic of Moldova", "Republic of Moldova",
"Republic of Moldova", "Republic of Moldova", "Republic of Moldova",
"Republic of Moldova", "Republic of Moldova", "Republic of Moldova",
"Republic of Moldova", "Republic of Moldova", "Republic of Moldova",
"Republic of Moldova", "Republic of Moldova", "Republic of Moldova",
"Republic of Moldova", "Republic of Moldova", "Republic of Moldova",
"Republic of Moldova", "Republic of Moldova", "Republic of Moldova",
"Republic of Moldova", "Republic of Moldova", "Republic of Moldova",
"Republic of Moldova", "Republic of Moldova", "Republic of Moldova",
"Republic of Moldova", "Republic of Moldova", "Republic of Moldova",
"Republic of Moldova", "Republic of Moldova", "Republic of Moldova",
"Republic of Moldova", "Republic of Moldova", "R\xe9union", "R\xe9union",
"R\xe9union", "R\xe9union", "R\xe9union", "R\xe9union", "R\xe9union",
"R\xe9union", "R\xe9union", "R\xe9union", "R\xe9union", "R\xe9union",
"R\xe9union", "R\xe9union", "R\xe9union", "R\xe9union", "Romania",
"Romania", "Romania", "Romania", "Romania", "Romania", "Romania",
"Romania", "Romania", "Romania", "Romania", "Romania", "Romania",
"Romania", "Romania", "Romania", "Romania", "Romania", "Romania",
"Romania", "Romania", "Romania", "Romania", "Romania", "Romania",
"Romania", "Romania", "Romania", "Romania", "Romania", "Romania",
"Romania", "Romania", "Romania", "Romania", "Romania", "Russian Federation",
"Russian Federation", "Russian Federation", "Russian Federation",
"Russian Federation", "Russian Federation", "Russian Federation",
"Russian Federation", "Russian Federation", "Russian Federation",
"Russian Federation", "Russian Federation", "Russian Federation",
"Russian Federation", "Russian Federation", "Russian Federation",
"Russian Federation", "Russian Federation", "Russian Federation",
"Russian Federation", "Russian Federation", "Russian Federation",
"Russian Federation", "Russian Federation", "Russian Federation",
"Russian Federation", "Russian Federation", "Russian Federation",
"Russian Federation", "Russian Federation", "Russian Federation",
"Russian Federation", "Russian Federation", "Russian Federation",
"Russian Federation", "Russian Federation", "Rwanda", "Rwanda",
"Rwanda", "Rwanda", "Rwanda", "Rwanda", "Rwanda", "Rwanda", "Rwanda",
"Rwanda", "Rwanda", "Rwanda", "Rwanda", "Rwanda", "Rwanda", "Rwanda",
"Rwanda", "Rwanda", "Rwanda", "Rwanda", "Rwanda", "Rwanda", "Rwanda",
"Rwanda", "Rwanda", "Rwanda", "Rwanda", "Rwanda", "Rwanda", "Rwanda",
"Rwanda", "Rwanda", "Rwanda", "Rwanda", "Rwanda", "Rwanda", "Saint Helena",
"Saint Helena", "Saint Helena", "Saint Helena", "Saint Helena",
"Saint Helena", "Saint Helena", "Saint Helena", "Saint Kitts and Nevis",
"Saint Kitts and Nevis", "Saint Kitts and Nevis", "Saint Kitts and Nevis",
"Saint Kitts and Nevis", "Saint Kitts and Nevis", "Saint Kitts and Nevis",
"Saint Kitts and Nevis", "Saint Kitts and Nevis", "Saint Kitts and Nevis",
"Saint Kitts and Nevis", "Saint Kitts and Nevis", "Saint Kitts and Nevis",
"Saint Kitts and Nevis", "Saint Lucia", "Saint Lucia", "Saint Lucia",
"Saint Lucia", "Saint Lucia", "Saint Lucia", "Saint Lucia", "Saint Lucia",
"Saint Lucia", "Saint Lucia", "Saint Lucia", "Saint Lucia", "Saint Lucia",
"Saint Lucia", "Saint Lucia", "Saint Lucia", "Saint Lucia", "Saint Lucia",
"Saint Lucia", "Saint Lucia", "Saint Lucia", "Saint Lucia", "Saint Lucia",
"Saint Lucia", "Saint Lucia", "Saint Lucia", "Saint Pierre and Miquelon",
"Saint Pierre and Miquelon", "Saint Pierre and Miquelon", "Saint Pierre and Miquelon",
"Saint Pierre and Miquelon", "Saint Pierre and Miquelon", "Saint Pierre and Miquelon",
"Saint Pierre and Miquelon", "Saint Vincent & Grenadines", "Saint Vincent & Grenadines",
"Saint Vincent & Grenadines", "Saint Vincent & Grenadines", "Saint Vincent & Grenadines",
"Saint Vincent & Grenadines", "Saint Vincent & Grenadines", "Saint Vincent & Grenadines",
"Saint Vincent & Grenadines", "Saint Vincent & Grenadines", "Saint Vincent & Grenadines",
"Saint Vincent & Grenadines", "Saint Vincent & Grenadines", "Saint Vincent & Grenadines",
"Saint Vincent & Grenadines", "Saint Vincent & Grenadines", "Saint Vincent & Grenadines",
"Saint Vincent & Grenadines", "Saint Vincent & Grenadines", "Saint Vincent & Grenadines",
"Samoa", "Samoa", "Samoa", "Samoa", "Samoa", "Samoa", "Samoa",
"Samoa", "Samoa", "Samoa", "Samoa", "Samoa", "Samoa", "Samoa",
"Samoa", "Samoa", "Samoa", "Samoa", "Samoa", "Samoa", "San Marino",
"San Marino", "San Marino", "San Marino", "San Marino", "San Marino",
"San Marino", "San Marino", "Sao Tome and Principe", "Sao Tome and Principe",
"Sao Tome and Principe", "Sao Tome and Principe", "Sao Tome and Principe",
"Sao Tome and Principe", "Sao Tome and Principe", "Sao Tome and Principe",
"Sao Tome and Principe", "Sao Tome and Principe", "Sao Tome and Principe",
"Sao Tome and Principe", "Sao Tome and Principe", "Sao Tome and Principe",
"Sao Tome and Principe", "Sao Tome and Principe", "Saudi Arabia",
"Saudi Arabia", "Saudi Arabia", "Saudi Arabia", "Saudi Arabia",
"Saudi Arabia", "Saudi Arabia", "Saudi Arabia", "Saudi Arabia",
"Saudi Arabia", "Saudi Arabia", "Saudi Arabia", "Saudi Arabia",
"Saudi Arabia", "Saudi Arabia", "Saudi Arabia", "Saudi Arabia",
"Saudi Arabia", "Saudi Arabia", "Saudi Arabia", "Saudi Arabia",
"Saudi Arabia", "Saudi Arabia", "Saudi Arabia", "Saudi Arabia",
"Saudi Arabia", "Saudi Arabia", "Saudi Arabia", "Saudi Arabia",
"Saudi Arabia", "Saudi Arabia", "Saudi Arabia", "Saudi Arabia",
"Saudi Arabia", "Saudi Arabia", "Saudi Arabia", "Senegal", "Senegal",
"Senegal", "Senegal", "Senegal", "Senegal", "Senegal", "Senegal",
"Senegal", "Senegal", "Senegal", "Senegal", "Senegal", "Senegal",
"Senegal", "Senegal", "Senegal", "Senegal", "Senegal", "Senegal",
"Senegal", "Senegal", "Senegal", "Senegal", "Senegal", "Senegal",
"Senegal", "Senegal", "Senegal", "Senegal", "Senegal", "Senegal",
"Senegal", "Senegal", "Senegal", "Senegal", "Senegal", "Serbia",
"Serbia", "Serbia", "Serbia", "Serbia", "Serbia", "Serbia", "Serbia",
"Serbia", "Serbia", "Serbia", "Serbia", "Serbia", "Serbia", "Serbia",
"Serbia", "Serbia", "Serbia", "Serbia", "Serbia", "Serbia", "Serbia",
"Serbia", "Serbia", "Serbia", "Serbia", "Serbia", "Serbia", "Serbia",
"Serbia", "Serbia", "Serbia", "Serbia", "Serbia", "Serbia", "Serbia",
"Seychelles", "Seychelles", "Seychelles", "Seychelles", "Seychelles",
"Seychelles", "Seychelles", "Seychelles", "Seychelles", "Seychelles",
"Seychelles", "Seychelles", "Seychelles", "Seychelles", "Seychelles",
"Seychelles", "Seychelles", "Seychelles", "Sierra Leone", "Sierra Leone",
"Sierra Leone", "Sierra Leone", "Sierra Leone", "Sierra Leone",
"Sierra Leone", "Sierra Leone", "Sierra Leone", "Sierra Leone",
"Sierra Leone", "Sierra Leone", "Sierra Leone", "Sierra Leone",
"Sierra Leone", "Sierra Leone", "Sierra Leone", "Sierra Leone",
"Sierra Leone", "Sierra Leone", "Sierra Leone", "Sierra Leone",
"Sierra Leone", "Sierra Leone", "Sierra Leone", "Sierra Leone",
"Sierra Leone", "Sierra Leone", "Sierra Leone", "Sierra Leone",
"Sierra Leone", "Sierra Leone", "Sierra Leone", "Sierra Leone",
"Sierra Leone", "Singapore", "Singapore", "Singapore", "Singapore",
"Singapore", "Singapore", "Singapore", "Singapore", "Singapore",
"Singapore", "Singapore", "Singapore", "Singapore", "Singapore",
"Singapore", "Singapore", "Singapore", "Singapore", "Singapore",
"Singapore", "Singapore", "Singapore", "Singapore", "Singapore",
"Singapore", "Singapore", "Singapore", "Singapore", "Sint Maarten (Dutch part)",
"Sint Maarten (Dutch part)", "Sint Maarten (Dutch part)", "Sint Maarten (Dutch part)",
"Sint Maarten (Dutch part)", "Sint Maarten (Dutch part)", "Sint Maarten (Dutch part)",
"Sint Maarten (Dutch part)", "Sint Maarten (Dutch part)", "Sint Maarten (Dutch part)",
"Sint Maarten (Dutch part)", "Sint Maarten (Dutch part)", "Sint Maarten (Dutch part)",
"Sint Maarten (Dutch part)", "Sint Maarten (Dutch part)", "Sint Maarten (Dutch part)",
"Sint Maarten (Dutch part)", "Sint Maarten (Dutch part)", "Sint Maarten (Dutch part)",
"Sint Maarten (Dutch part)", "Slovakia", "Slovakia", "Slovakia",
"Slovakia", "Slovakia", "Slovakia", "Slovakia", "Slovakia", "Slovakia",
"Slovakia", "Slovakia", "Slovakia", "Slovakia", "Slovakia", "Slovakia",
"Slovakia", "Slovakia", "Slovakia", "Slovakia", "Slovakia", "Slovakia",
"Slovakia", "Slovakia", "Slovakia", "Slovakia", "Slovakia", "Slovakia",
"Slovakia", "Slovakia", "Slovakia", "Slovakia", "Slovakia", "Slovakia",
"Slovakia", "Slovakia", "Slovenia", "Slovenia", "Slovenia", "Slovenia",
"Slovenia", "Slovenia", "Slovenia", "Slovenia", "Slovenia", "Slovenia",
"Slovenia", "Slovenia", "Slovenia", "Slovenia", "Slovenia", "Slovenia",
"Slovenia", "Slovenia", "Slovenia", "Slovenia", "Slovenia", "Slovenia",
"Slovenia", "Slovenia", "Slovenia", "Slovenia", "Slovenia", "Slovenia",
"Slovenia", "Slovenia", "Slovenia", "Slovenia", "Slovenia", "Slovenia",
"Slovenia", "Slovenia", "Slovenia", "Slovenia", "Slovenia", "Solomon Islands",
"Solomon Islands", "Solomon Islands", "Solomon Islands", "Solomon Islands",
"Solomon Islands", "Solomon Islands", "Solomon Islands", "Solomon Islands",
"Solomon Islands", "Solomon Islands", "Solomon Islands", "Solomon Islands",
"Solomon Islands", "Solomon Islands", "Solomon Islands", "Solomon Islands",
"Solomon Islands", "Solomon Islands", "Solomon Islands", "Solomon Islands",
"Solomon Islands", "Somalia", "Somalia", "Somalia", "Somalia",
"Somalia", "Somalia", "Somalia", "Somalia", "Somalia", "Somalia",
"Somalia", "Somalia", "Somalia", "Somalia", "Somalia", "Somalia",
"Somalia", "Somalia", "Somalia", "Somalia", "Somalia", "Somalia",
"Somalia", "Somalia", "Somalia", "Somalia", "Somalia", "Somalia",
"Somalia", "Somalia", "Somalia", "Somalia", "Somalia", "Somalia",
"Somalia", "Somalia", "South Africa", "South Africa", "South Africa",
"South Africa", "South Africa", "South Africa", "South Africa",
"South Africa", "South Africa", "South Africa", "South Africa",
"South Africa", "South Africa", "South Africa", "South Africa",
"South Africa", "South Africa", "South Africa", "South Africa",
"South Africa", "South Africa", "South Africa", "South Africa",
"South Africa", "South Africa", "South Africa", "South Africa",
"South Africa", "South Africa", "South Africa", "South Africa",
"South Africa", "South Africa", "South Sudan", "South Sudan",
"South Sudan", "South Sudan", "South Sudan", "South Sudan", "South Sudan",
"South Sudan", "South Sudan", "South Sudan", "South Sudan", "South Sudan",
"South Sudan", "South Sudan", "South Sudan", "South Sudan", "South Sudan",
"South Sudan", "South Sudan", "South Sudan", "South Sudan", "South Sudan",
"South Sudan", "South Sudan", "Spain", "Spain", "Spain", "Spain",
"Spain", "Spain", "Spain", "Spain", "Spain", "Spain", "Spain",
"Spain", "Spain", "Spain", "Spain", "Spain", "Spain", "Spain",
"Spain", "Spain", "Spain", "Spain", "Spain", "Spain", "Spain",
"Spain", "Spain", "Spain", "Spain", "Spain", "Spain", "Spain",
"Spain", "Spain", "Spain", "Sri Lanka", "Sri Lanka", "Sri Lanka",
"Sri Lanka", "Sri Lanka", "Sri Lanka", "Sri Lanka", "Sri Lanka",
"Sri Lanka", "Sri Lanka", "Sri Lanka", "Sri Lanka", "Sri Lanka",
"Sri Lanka", "Sri Lanka", "Sri Lanka", "Sri Lanka", "Sri Lanka",
"Sri Lanka", "Sri Lanka", "Sri Lanka", "Sri Lanka", "Sri Lanka",
"Sri Lanka", "Sri Lanka", "Sri Lanka", "Sri Lanka", "Sri Lanka",
"Sri Lanka", "Sri Lanka", "Sri Lanka", "Sri Lanka", "Sri Lanka",
"Sri Lanka", "Sri Lanka", "Sri Lanka", "State of Palestine",
"State of Palestine", "State of Palestine", "State of Palestine",
"State of Palestine", "State of Palestine", "State of Palestine",
"State of Palestine", "State of Palestine", "State of Palestine",
"State of Palestine", "State of Palestine", "State of Palestine",
"State of Palestine", "State of Palestine", "State of Palestine",
"State of Palestine", "State of Palestine", "Sudan", "Sudan",
"Sudan", "Sudan", "Sudan", "Sudan", "Sudan", "Sudan", "Sudan",
"Sudan", "Sudan", "Sudan", "Sudan", "Sudan", "Sudan", "Sudan",
"Sudan", "Sudan", "Sudan", "Sudan", "Sudan", "Sudan", "Sudan",
"Sudan", "Sudan", "Sudan", "Sudan", "Sudan", "Sudan", "Sudan",
"Sudan", "Sudan", "Sudan", "Sudan", "Sudan", "Sudan", "Suriname",
"Suriname", "Suriname", "Suriname", "Suriname", "Suriname", "Suriname",
"Suriname", "Suriname", "Suriname", "Suriname", "Suriname", "Suriname",
"Suriname", "Suriname", "Suriname", "Suriname", "Suriname", "Suriname",
"Suriname", "Suriname", "Suriname", "Suriname", "Suriname", "Suriname",
"Suriname", "Suriname", "Suriname", "Suriname", "Suriname", "Suriname",
"Sweden", "Sweden", "Sweden", "Sweden", "Sweden", "Sweden", "Sweden",
"Sweden", "Sweden", "Sweden", "Sweden", "Sweden", "Sweden", "Sweden",
"Sweden", "Sweden", "Sweden", "Sweden", "Sweden", "Sweden", "Sweden",
"Sweden", "Sweden", "Sweden", "Sweden", "Sweden", "Sweden", "Sweden",
"Sweden", "Sweden", "Sweden", "Sweden", "Sweden", "Sweden", "Sweden",
"Sweden", "Switzerland", "Switzerland", "Switzerland", "Switzerland",
"Switzerland", "Switzerland", "Switzerland", "Switzerland", "Switzerland",
"Switzerland", "Switzerland", "Switzerland", "Switzerland", "Switzerland",
"Switzerland", "Switzerland", "Switzerland", "Switzerland", "Switzerland",
"Switzerland", "Switzerland", "Switzerland", "Switzerland", "Switzerland",
"Switzerland", "Switzerland", "Switzerland", "Switzerland", "Switzerland",
"Switzerland", "Switzerland", "Switzerland", "Switzerland", "Switzerland",
"Switzerland", "Syrian Arab Republic", "Syrian Arab Republic",
"Syrian Arab Republic", "Syrian Arab Republic", "Syrian Arab Republic",
"Syrian Arab Republic", "Syrian Arab Republic", "Syrian Arab Republic",
"Syrian Arab Republic", "Syrian Arab Republic", "Syrian Arab Republic",
"Syrian Arab Republic", "Syrian Arab Republic", "Syrian Arab Republic",
"Syrian Arab Republic", "Syrian Arab Republic", "Syrian Arab Republic",
"Syrian Arab Republic", "Syrian Arab Republic", "Syrian Arab Republic",
"Syrian Arab Republic", "Syrian Arab Republic", "Syrian Arab Republic",
"Syrian Arab Republic", "Syrian Arab Republic", "Syrian Arab Republic",
"Syrian Arab Republic", "Syrian Arab Republic", "Syrian Arab Republic",
"Syrian Arab Republic", "Syrian Arab Republic", "Syrian Arab Republic",
"Syrian Arab Republic", "Syrian Arab Republic", "Syrian Arab Republic",
"Syrian Arab Republic", "Tajikistan", "Tajikistan", "Tajikistan",
"Tajikistan", "Tajikistan", "Tajikistan", "Tajikistan", "Tajikistan",
"Tajikistan", "Tajikistan", "Tajikistan", "Tajikistan", "Tajikistan",
"Tajikistan", "Tajikistan", "Tajikistan", "Tajikistan", "Tajikistan",
"Tajikistan", "Tajikistan", "Tajikistan", "Tajikistan", "Tajikistan",
"Tajikistan", "Tajikistan", "Tajikistan", "Tajikistan", "Tajikistan",
"Tajikistan", "Tajikistan", "Tajikistan", "Tajikistan", "Tajikistan",
"Tajikistan", "Tajikistan", "Tajikistan", "Thailand", "Thailand",
"Thailand", "Thailand", "Thailand", "Thailand", "Thailand", "Thailand",
"Thailand", "Thailand", "Thailand", "Thailand", "Thailand", "Thailand",
"Thailand", "Thailand", "Thailand", "Thailand", "Thailand", "Thailand",
"Thailand", "Thailand", "Thailand", "Thailand", "Thailand", "Thailand",
"Thailand", "Thailand", "Thailand", "Thailand", "Thailand", "Thailand",
"Thailand", "Thailand", "Thailand", "Thailand", "Timor-Leste",
"Timor-Leste", "Timor-Leste", "Timor-Leste", "Timor-Leste", "Timor-Leste",
"Timor-Leste", "Timor-Leste", "Timor-Leste", "Timor-Leste", "Timor-Leste",
"Timor-Leste", "Timor-Leste", "Timor-Leste", "Timor-Leste", "Timor-Leste",
"Timor-Leste", "Timor-Leste", "Timor-Leste", "Timor-Leste", "Timor-Leste",
"Timor-Leste", "Timor-Leste", "Timor-Leste", "Timor-Leste", "Timor-Leste",
"Togo", "Togo", "Togo", "Togo", "Togo", "Togo", "Togo", "Togo",
"Togo", "Togo", "Togo", "Togo", "Togo", "Togo", "Togo", "Togo",
"Togo", "Togo", "Togo", "Togo", "Togo", "Togo", "Togo", "Togo",
"Togo", "Togo", "Togo", "Togo", "Togo", "Togo", "Togo", "Togo",
"Togo", "Togo", "Togo", "Togo", "Togo", "Tokelau", "Tokelau",
"Tokelau", "Tokelau", "Tokelau", "Tokelau", "Tokelau", "Tokelau",
"Tonga", "Tonga", "Tonga", "Tonga", "Tonga", "Tonga", "Tonga",
"Tonga", "Tonga", "Tonga", "Tonga", "Tonga", "Tonga", "Tonga",
"Tonga", "Tonga", "Tonga", "Tonga", "Tonga", "Tonga", "Trinidad and Tobago",
"Trinidad and Tobago", "Trinidad and Tobago", "Trinidad and Tobago",
"Trinidad and Tobago", "Trinidad and Tobago", "Trinidad and Tobago",
"Trinidad and Tobago", "Trinidad and Tobago", "Trinidad and Tobago",
"Trinidad and Tobago", "Trinidad and Tobago", "Trinidad and Tobago",
"Trinidad and Tobago", "Trinidad and Tobago", "Trinidad and Tobago",
"Trinidad and Tobago", "Trinidad and Tobago", "Trinidad and Tobago",
"Trinidad and Tobago", "Trinidad and Tobago", "Trinidad and Tobago",
"Trinidad and Tobago", "Trinidad and Tobago", "Trinidad and Tobago",
"Trinidad and Tobago", "Trinidad and Tobago", "Trinidad and Tobago",
"Trinidad and Tobago", "Trinidad and Tobago", "Tunisia", "Tunisia",
"Tunisia", "Tunisia", "Tunisia", "Tunisia", "Tunisia", "Tunisia",
"Tunisia", "Tunisia", "Tunisia", "Tunisia", "Tunisia", "Tunisia",
"Tunisia", "Tunisia", "Tunisia", "Tunisia", "Tunisia", "Tunisia",
"Tunisia", "Tunisia", "Tunisia", "Tunisia", "Tunisia", "Tunisia",
"Tunisia", "Tunisia", "Tunisia", "Tunisia", "Tunisia", "Tunisia",
"Tunisia", "Tunisia", "Tunisia", "T\xfcrkiye", "T\xfcrkiye",
"T\xfcrkiye", "T\xfcrkiye", "T\xfcrkiye", "T\xfcrkiye", "T\xfcrkiye",
"T\xfcrkiye", "T\xfcrkiye", "T\xfcrkiye", "T\xfcrkiye", "T\xfcrkiye",
"T\xfcrkiye", "T\xfcrkiye", "T\xfcrkiye", "T\xfcrkiye", "T\xfcrkiye",
"T\xfcrkiye", "T\xfcrkiye", "T\xfcrkiye", "T\xfcrkiye", "T\xfcrkiye",
"T\xfcrkiye", "T\xfcrkiye", "T\xfcrkiye", "T\xfcrkiye", "T\xfcrkiye",
"T\xfcrkiye", "T\xfcrkiye", "T\xfcrkiye", "T\xfcrkiye", "T\xfcrkiye",
"T\xfcrkiye", "T\xfcrkiye", "T\xfcrkiye", "T\xfcrkiye", "Turkmenistan",
"Turkmenistan", "Turkmenistan", "Turkmenistan", "Turkmenistan",
"Turkmenistan", "Turkmenistan", "Turkmenistan", "Turkmenistan",
"Turkmenistan", "Turkmenistan", "Turkmenistan", "Turkmenistan",
"Turkmenistan", "Turkmenistan", "Turkmenistan", "Turkmenistan",
"Turkmenistan", "Turkmenistan", "Turkmenistan", "Turkmenistan",
"Turkmenistan", "Turkmenistan", "Turkmenistan", "Turkmenistan",
"Turkmenistan", "Turkmenistan", "Turkmenistan", "Turkmenistan",
"Turkmenistan", "Turkmenistan", "Turkmenistan", "Turks and Caicos Islands",
"Turks and Caicos Islands", "Turks and Caicos Islands", "Turks and Caicos Islands",
"Turks and Caicos Islands", "Turks and Caicos Islands", "Turks and Caicos Islands",
"Turks and Caicos Islands", "Turks and Caicos Islands", "Turks and Caicos Islands",
"Turks and Caicos Islands", "Turks and Caicos Islands", "Turks and Caicos Islands",
"Turks and Caicos Islands", "Turks and Caicos Islands", "Turks and Caicos Islands",
"Turks and Caicos Islands", "Turks and Caicos Islands", "Turks and Caicos Islands",
"Tuvalu", "Tuvalu", "Tuvalu", "Tuvalu", "Tuvalu", "Tuvalu", "Tuvalu",
"Tuvalu", "Uganda", "Uganda", "Uganda", "Uganda", "Uganda", "Uganda",
"Uganda", "Uganda", "Uganda", "Uganda", "Uganda", "Uganda", "Uganda",
"Uganda", "Uganda", "Uganda", "Uganda", "Uganda", "Uganda", "Uganda",
"Uganda", "Uganda", "Uganda", "Uganda", "Uganda", "Uganda", "Uganda",
"Uganda", "Uganda", "Uganda", "Uganda", "Uganda", "Uganda", "Uganda",
"Uganda", "Uganda", "Ukraine", "Ukraine", "Ukraine", "Ukraine",
"Ukraine", "Ukraine", "Ukraine", "Ukraine", "Ukraine", "Ukraine",
"Ukraine", "Ukraine", "Ukraine", "Ukraine", "Ukraine", "Ukraine",
"Ukraine", "Ukraine", "Ukraine", "Ukraine", "Ukraine", "Ukraine",
"Ukraine", "Ukraine", "Ukraine", "Ukraine", "Ukraine", "Ukraine",
"Ukraine", "Ukraine", "Ukraine", "Ukraine", "Ukraine", "Ukraine",
"Ukraine", "Ukraine", "United Arab Emirates", "United Arab Emirates",
"United Arab Emirates", "United Arab Emirates", "United Arab Emirates",
"United Arab Emirates", "United Arab Emirates", "United Arab Emirates",
"United Arab Emirates", "United Arab Emirates", "United Arab Emirates",
"United Arab Emirates", "United Arab Emirates", "United Arab Emirates",
"United Arab Emirates", "United Arab Emirates", "United Arab Emirates",
"United Arab Emirates", "United Arab Emirates", "United Arab Emirates",
"United Arab Emirates", "United Arab Emirates", "United Arab Emirates",
"United Arab Emirates", "United Arab Emirates", "United Arab Emirates",
"United Arab Emirates", "United Arab Emirates", "United Arab Emirates",
"United Arab Emirates", "United Arab Emirates", "United Arab Emirates",
"United Arab Emirates", "United Kingdom", "United Kingdom", "United Kingdom",
"United Kingdom", "United Kingdom", "United Kingdom", "United Kingdom",
"United Kingdom", "United Kingdom", "United Kingdom", "United Kingdom",
"United Kingdom", "United Kingdom", "United Kingdom", "United Kingdom",
"United Kingdom", "United Kingdom", "United Kingdom", "United Kingdom",
"United Kingdom", "United Kingdom", "United Kingdom", "United Kingdom",
"United Kingdom", "United Kingdom", "United Kingdom", "United Kingdom",
"United Kingdom", "United Kingdom", "United Kingdom", "United Kingdom",
"United Kingdom", "United Kingdom", "United Kingdom", "United Kingdom",
"United Kingdom", "United Rep. of Tanzania", "United Rep. of Tanzania",
"United Rep. of Tanzania", "United Rep. of Tanzania", "United Rep. of Tanzania",
"United Rep. of Tanzania", "United Rep. of Tanzania", "United Rep. of Tanzania",
"United Rep. of Tanzania", "United Rep. of Tanzania", "United Rep. of Tanzania",
"United Rep. of Tanzania", "United Rep. of Tanzania", "United Rep. of Tanzania",
"United Rep. of Tanzania", "United Rep. of Tanzania", "United Rep. of Tanzania",
"United Rep. of Tanzania", "United Rep. of Tanzania", "United Rep. of Tanzania",
"United Rep. of Tanzania", "United Rep. of Tanzania", "United Rep. of Tanzania",
"United Rep. of Tanzania", "United Rep. of Tanzania", "United Rep. of Tanzania",
"United Rep. of Tanzania", "United Rep. of Tanzania", "United Rep. of Tanzania",
"United Rep. of Tanzania", "United Rep. of Tanzania", "United Rep. of Tanzania",
"United Rep. of Tanzania", "United Rep. of Tanzania", "United Rep. of Tanzania",
"United Rep. of Tanzania", "United States of America", "United States of America",
"United States of America", "United States of America", "United States of America",
"United States of America", "United States of America", "United States of America",
"United States of America", "United States of America", "United States of America",
"United States of America", "United States of America", "United States of America",
"United States of America", "United States of America", "United States of America",
"United States of America", "United States of America", "United States of America",
"United States of America", "United States of America", "United States of America",
"United States of America", "United States of America", "United States of America",
"United States of America", "United States of America", "United States of America",
"United States of America", "United States of America", "United States of America",
"United States Virgin Islands", "United States Virgin Islands",
"United States Virgin Islands", "United States Virgin Islands",
"United States Virgin Islands", "United States Virgin Islands",
"United States Virgin Islands", "United States Virgin Islands",
"United States Virgin Islands", "United States Virgin Islands",
"United States Virgin Islands", "United States Virgin Islands",
"United States Virgin Islands", "United States Virgin Islands",
"United States Virgin Islands", "United States Virgin Islands",
"Uruguay", "Uruguay", "Uruguay", "Uruguay", "Uruguay", "Uruguay",
"Uruguay", "Uruguay", "Uruguay", "Uruguay", "Uruguay", "Uruguay",
"Uruguay", "Uruguay", "Uruguay", "Uruguay", "Uruguay", "Uruguay",
"Uruguay", "Uruguay", "Uruguay", "Uruguay", "Uruguay", "Uruguay",
"Uruguay", "Uruguay", "Uruguay", "Uruguay", "Uruguay", "Uruguay",
"Uruguay", "Uruguay", "Uruguay", "Uzbekistan", "Uzbekistan",
"Uzbekistan", "Uzbekistan", "Uzbekistan", "Uzbekistan", "Uzbekistan",
"Uzbekistan", "Uzbekistan", "Uzbekistan", "Uzbekistan", "Uzbekistan",
"Uzbekistan", "Uzbekistan", "Uzbekistan", "Uzbekistan", "Uzbekistan",
"Uzbekistan", "Uzbekistan", "Uzbekistan", "Uzbekistan", "Uzbekistan",
"Uzbekistan", "Uzbekistan", "Uzbekistan", "Uzbekistan", "Uzbekistan",
"Uzbekistan", "Uzbekistan", "Uzbekistan", "Uzbekistan", "Uzbekistan",
"Vanuatu", "Vanuatu", "Vanuatu", "Vanuatu", "Vanuatu", "Vanuatu",
"Vanuatu", "Vanuatu", "Vanuatu", "Vanuatu", "Vanuatu", "Vanuatu",
"Vanuatu", "Vanuatu", "Vanuatu", "Vanuatu", "Vanuatu", "Vanuatu",
"Vanuatu", "Vanuatu", "Vanuatu", "Vanuatu", "Venezuela (Boliv. Rep. of)",
"Venezuela (Boliv. Rep. of)", "Venezuela (Boliv. Rep. of)", "Venezuela (Boliv. Rep. of)",
"Venezuela (Boliv. Rep. of)", "Venezuela (Boliv. Rep. of)", "Venezuela (Boliv. Rep. of)",
"Venezuela (Boliv. Rep. of)", "Venezuela (Boliv. Rep. of)", "Venezuela (Boliv. Rep. of)",
"Venezuela (Boliv. Rep. of)", "Venezuela (Boliv. Rep. of)", "Venezuela (Boliv. Rep. of)",
"Venezuela (Boliv. Rep. of)", "Venezuela (Boliv. Rep. of)", "Venezuela (Boliv. Rep. of)",
"Venezuela (Boliv. Rep. of)", "Venezuela (Boliv. Rep. of)", "Venezuela (Boliv. Rep. of)",
"Venezuela (Boliv. Rep. of)", "Venezuela (Boliv. Rep. of)", "Venezuela (Boliv. Rep. of)",
"Venezuela (Boliv. Rep. of)", "Venezuela (Boliv. Rep. of)", "Venezuela (Boliv. Rep. of)",
"Venezuela (Boliv. Rep. of)", "Venezuela (Boliv. Rep. of)", "Venezuela (Boliv. Rep. of)",
"Venezuela (Boliv. Rep. of)", "Venezuela (Boliv. Rep. of)", "Venezuela (Boliv. Rep. of)",
"Venezuela (Boliv. Rep. of)", "Venezuela (Boliv. Rep. of)", "Venezuela (Boliv. Rep. of)",
"Viet Nam", "Viet Nam", "Viet Nam", "Viet Nam", "Viet Nam", "Viet Nam",
"Viet Nam", "Viet Nam", "Viet Nam", "Viet Nam", "Viet Nam", "Viet Nam",
"Viet Nam", "Viet Nam", "Viet Nam", "Viet Nam", "Viet Nam", "Viet Nam",
"Viet Nam", "Viet Nam", "Viet Nam", "Viet Nam", "Viet Nam", "Viet Nam",
"Viet Nam", "Viet Nam", "Viet Nam", "Viet Nam", "Viet Nam", "Wallis and Futuna Islands",
"Wallis and Futuna Islands", "Wallis and Futuna Islands", "Wallis and Futuna Islands",
"Wallis and Futuna Islands", "Wallis and Futuna Islands", "Wallis and Futuna Islands",
"Wallis and Futuna Islands", "Western Sahara", "Western Sahara",
"Western Sahara", "Western Sahara", "Western Sahara", "Western Sahara",
"Western Sahara", "Western Sahara", "Western Sahara", "Western Sahara",
"Western Sahara", "Western Sahara", "Western Sahara", "Western Sahara",
"Western Sahara", "Western Sahara", "Yemen", "Yemen", "Yemen",
"Yemen", "Yemen", "Yemen", "Yemen", "Yemen", "Yemen", "Yemen",
"Yemen", "Yemen", "Yemen", "Yemen", "Yemen", "Yemen", "Yemen",
"Yemen", "Yemen", "Yemen", "Yemen", "Yemen", "Yemen", "Yemen",
"Yemen", "Yemen", "Yemen", "Yemen", "Yemen", "Yemen", "Yemen",
"Yemen", "Yemen", "Yemen", "Yemen", "Yemen", "Zambia", "Zambia",
"Zambia", "Zambia", "Zambia", "Zambia", "Zambia", "Zambia", "Zambia",
"Zambia", "Zambia", "Zambia", "Zambia", "Zambia", "Zambia", "Zambia",
"Zambia", "Zambia", "Zambia", "Zambia", "Zambia", "Zambia", "Zambia",
"Zambia", "Zambia", "Zambia", "Zambia", "Zambia", "Zambia", "Zambia",
"Zambia", "Zambia", "Zambia", "Zambia", "Zambia", "Zambia", "Zimbabwe",
"Zimbabwe", "Zimbabwe", "Zimbabwe", "Zimbabwe", "Zimbabwe", "Zimbabwe",
"Zimbabwe", "Zimbabwe", "Zimbabwe", "Zimbabwe", "Zimbabwe", "Zimbabwe",
"Zimbabwe", "Zimbabwe", "Zimbabwe", "Zimbabwe", "Zimbabwe", "Zimbabwe",
"Zimbabwe", "Zimbabwe", "Zimbabwe", "Zimbabwe", "Zimbabwe", "Zimbabwe",
"Zimbabwe", "Zimbabwe", "Zimbabwe", "Zimbabwe", "Zimbabwe", "Zimbabwe",
"Zimbabwe", "Zimbabwe", "Zimbabwe", "Zimbabwe"), ISO2C = c("AF",
"AF", "AF", "AF", "AF", "AF", "AF", "AF", "AF", "AF", "AF", "AF",
"AF", "AF", "AF", "AF", "AF", "AF", "AF", "AF", "AF", "AF", "AF",
"AF", "AF", "AF", "AF", "AF", "AF", "AF", "AF", "AF", "AF", "AF",
"AF", "AF", "AL", "AL", "AL", "AL", "AL", "AL", "AL", "AL", "AL",
"AL", "AL", "AL", "AL", "AL", "AL", "AL", "AL", "AL", "AL", "AL",
"AL", "AL", "AL", "AL", "AL", "AL", "AL", "AL", "AL", "AL", "AL",
"AL", "AL", "AL", "AL", "DZ", "DZ", "DZ", "DZ", "DZ", "DZ", "DZ",
"DZ", "DZ", "DZ", "DZ", "DZ", "DZ", "DZ", "DZ", "DZ", "DZ", "DZ",
"DZ", "DZ", "DZ", "DZ", "DZ", "DZ", "DZ", "DZ", "DZ", "DZ", "DZ",
"DZ", "DZ", "AS", "AS", "AS", "AS", "AS", "AS", "AS", "AS", "AD",
"AD", "AD", "AD", "AD", "AD", "AD", "AD", "AO", "AO", "AO", "AO",
"AO", "AO", "AO", "AO", "AO", "AO", "AO", "AO", "AO", "AO", "AO",
"AO", "AO", "AO", "AO", "AO", "AO", "AO", "AO", "AO", "AO", "AO",
"AO", "AO", "AO", "AO", "AO", "AO", "AO", "AO", "AO", "AI", "AI",
"AI", "AI", "AI", "AI", "AI", "AI", "AI", "AI", "AI", "AI", "AI",
"AI", "AG", "AG", "AG", "AG", "AG", "AG", "AG", "AG", "AG", "AG",
"AG", "AG", "AG", "AG", "AG", "AG", "AG", "AG", "AG", "AG", "AG",
"AG", "AG", "AR", "AR", "AR", "AR", "AR", "AR", "AR", "AR", "AR",
"AR", "AR", "AR", "AR", "AR", "AR", "AR", "AR", "AR", "AR", "AR",
"AR", "AR", "AR", "AR", "AR", "AR", "AR", "AR", "AR", "AR", "AR",
"AR", "AR", "AR", "AM", "AM", "AM", "AM", "AM", "AM", "AM", "AM",
"AM", "AM", "AM", "AM", "AM", "AM", "AM", "AM", "AM", "AM", "AM",
"AM", "AM", "AM", "AM", "AM", "AM", "AM", "AM", "AM", "AM", "AM",
"AM", "AM", "AM", "AM", "AM", "AW", "AW", "AW", "AW", "AW", "AW",
"AW", "AW", "AW", "AW", "AW", "AW", "AW", "AW", "AW", "AW", "AW",
"AW", "AW", "AW", "AW", "AW", "AW", "AW", "AW", "AW", "AW", "AW",
"AW", "AW", "AU", "AU", "AU", "AU", "AU", "AU", "AU", "AU", "AU",
"AU", "AU", "AU", "AU", "AU", "AU", "AU", "AU", "AU", "AU", "AU",
"AU", "AU", "AU", "AU", "AU", "AU", "AU", "AU", "AU", "AU", "AU",
"AU", "AU", "AU", "AT", "AT", "AT", "AT", "AT", "AT", "AT", "AT",
"AT", "AT", "AT", "AT", "AT", "AT", "AT", "AT", "AT", "AT", "AT",
"AT", "AT", "AT", "AT", "AT", "AT", "AT", "AT", "AT", "AT", "AT",
"AT", "AT", "AT", "AT", "AT", "AT", "AZ", "AZ", "AZ", "AZ", "AZ",
"AZ", "AZ", "AZ", "AZ", "AZ", "AZ", "AZ", "AZ", "AZ", "AZ", "AZ",
"AZ", "AZ", "AZ", "AZ", "AZ", "AZ", "AZ", "AZ", "AZ", "AZ", "AZ",
"AZ", "AZ", "AZ", "AZ", "AZ", "AZ", "AZ", "AZ", "AZ", "BS", "BS",
"BS", "BS", "BS", "BS", "BS", "BS", "BS", "BS", "BS", "BS", "BS",
"BS", "BS", "BS", "BS", "BS", "BS", "BS", "BS", "BS", "BS", "BS",
"BS", "BS", "BS", "BS", "BS", "BS", "BS", "BS", "BS", "BS", "BS",
"BH", "BH", "BH", "BH", "BH", "BH", "BH", "BH", "BH", "BH", "BH",
"BH", "BH", "BH", "BH", "BH", "BH", "BH", "BH", "BH", "BH", "BH",
"BH", "BH", "BH", "BH", "BH", "BH", "BH", "BH", "BD", "BD", "BD",
"BD", "BD", "BD", "BD", "BD", "BD", "BD", "BD", "BD", "BD", "BD",
"BD", "BD", "BD", "BD", "BD", "BD", "BD", "BD", "BD", "BD", "BD",
"BD", "BD", "BD", "BD", "BD", "BD", "BD", "BB", "BB", "BB", "BB",
"BB", "BB", "BB", "BB", "BB", "BB", "BB", "BB", "BB", "BB", "BB",
"BB", "BB", "BB", "BB", "BB", "BB", "BB", "BB", "BB", "BB", "BY",
"BY", "BY", "BY", "BY", "BY", "BY", "BY", "BY", "BY", "BY", "BY",
"BY", "BY", "BY", "BY", "BY", "BY", "BY", "BY", "BY", "BY", "BY",
"BY", "BY", "BY", "BY", "BY", "BY", "BY", "BY", "BY", "BY", "BY",
"BY", "BY", "BE", "BE", "BE", "BE", "BE", "BE", "BE", "BE", "BE",
"BE", "BE", "BE", "BE", "BE", "BE", "BE", "BE", "BE", "BE", "BE",
"BE", "BE", "BE", "BE", "BE", "BE", "BE", "BE", "BE", "BE", "BE",
"BE", "BE", "BE", "BE", "BE", "BZ", "BZ", "BZ", "BZ", "BZ", "BZ",
"BZ", "BZ", "BZ", "BZ", "BZ", "BZ", "BZ", "BZ", "BZ", "BZ", "BZ",
"BZ", "BZ", "BZ", "BZ", "BZ", "BZ", "BZ", "BZ", "BZ", "BZ", "BZ",
"BZ", "BZ", "BZ", "BZ", "BZ", "BJ", "BJ", "BJ", "BJ", "BJ", "BJ",
"BJ", "BJ", "BJ", "BJ", "BJ", "BJ", "BJ", "BJ", "BJ", "BJ", "BJ",
"BJ", "BJ", "BJ", "BJ", "BJ", "BJ", "BJ", "BJ", "BJ", "BJ", "BJ",
"BJ", "BJ", "BJ", "BJ", "BJ", "BM", "BM", "BM", "BM", "BM", "BM",
"BM", "BM", "BT", "BT", "BT", "BT", "BT", "BT", "BT", "BT", "BT",
"BT", "BT", "BT", "BT", "BT", "BT", "BT", "BO", "BO", "BO", "BO",
"BO", "BO", "BO", "BO", "BO", "BO", "BO", "BO", "BO", "BO", "BO",
"BO", "BO", "BO", "BO", "BO", "BO", "BO", "BO", "BO", "BO", "BO",
"BO", "BO", "BO", "BO", "BO", "BO", "BO", "BO", "BO", "BQ", "BQ",
"BQ", "BQ", "BQ", "BQ", "BQ", "BQ", "BQ", "BQ", "BA", "BA", "BA",
"BA", "BA", "BA", "BA", "BA", "BA", "BA", "BA", "BA", "BA", "BA",
"BA", "BA", "BA", "BA", "BA", "BA", "BA", "BA", "BA", "BA", "BA",
"BA", "BA", "BA", "BA", "BA", "BA", "BA", "BA", "BA", "BA", "BA",
"BW", "BW", "BW", "BW", "BW", "BW", "BW", "BW", "BW", "BW", "BW",
"BW", "BW", "BW", "BW", "BW", "BW", "BW", "BW", "BW", "BW", "BW",
"BW", "BW", "BW", "BW", "BW", "BW", "BW", "BW", "BW", "BW", "BW",
"BW", "BW", "BR", "BR", "BR", "BR", "BR", "BR", "BR", "BR", "BR",
"BR", "BR", "BR", "BR", "BR", "BR", "BR", "BR", "BR", "BR", "BR",
"BR", "BR", "BR", "BR", "BR", "BR", "BR", "BR", "BR", "BR", "BR",
"BR", "BR", "BR", "BR", "BR", "VG", "VG", "VG", "VG", "VG", "VG",
"VG", "VG", "VG", "VG", "VG", "VG", "VG", "VG", "VG", "VG", "VG",
"VG", "BN", "BN", "BN", "BN", "BN", "BN", "BN", "BN", "BN", "BN",
"BN", "BN", "BN", "BN", "BN", "BN", "BN", "BN", "BN", "BN", "BN",
"BN", "BN", "BN", "BG", "BG", "BG", "BG", "BG", "BG", "BG", "BG",
"BG", "BG", "BG", "BG", "BG", "BG", "BG", "BG", "BG", "BG", "BG",
"BG", "BG", "BG", "BG", "BG", "BG", "BG", "BG", "BG", "BG", "BG",
"BG", "BG", "BG", "BG", "BF", "BF", "BF", "BF", "BF", "BF", "BF",
"BF", "BF", "BF", "BF", "BF", "BF", "BF", "BF", "BF", "BF", "BF",
"BF", "BF", "BF", "BF", "BF", "BF", "BF", "BF", "BF", "BF", "BF",
"BF", "BF", "BF", "BF", "BF", "BF", "BI", "BI", "BI", "BI", "BI",
"BI", "BI", "BI", "BI", "BI", "BI", "BI", "BI", "BI", "BI", "BI",
"BI", "BI", "BI", "BI", "BI", "BI", "BI", "BI", "BI", "BI", "BI",
"BI", "BI", "BI", "BI", "BI", "BI", "BI", "BI", "BI", "CV", "CV",
"CV", "CV", "CV", "CV", "CV", "CV", "CV", "CV", "CV", "CV", "CV",
"CV", "CV", "CV", "CV", "CV", "CV", "CV", "CV", "CV", "CV", "CV",
"KH", "KH", "KH", "KH", "KH", "KH", "KH", "KH", "KH", "KH", "KH",
"KH", "KH", "KH", "KH", "KH", "KH", "KH", "KH", "KH", "KH", "KH",
"KH", "KH", "KH", "KH", "KH", "KH", "KH", "KH", "KH", "KH", "KH",
"KH", "CM", "CM", "CM", "CM", "CM", "CM", "CM", "CM", "CM", "CM",
"CM", "CM", "CM", "CM", "CM", "CM", "CM", "CM", "CM", "CM", "CM",
"CM", "CM", "CM", "CM", "CM", "CM", "CM", "CM", "CM", "CM", "CM",
"CM", "CM", "CM", "CM", "CA", "CA", "CA", "CA", "CA", "CA", "CA",
"CA", "CA", "CA", "CA", "CA", "CA", "CA", "CA", "CA", "CA", "CA",
"CA", "CA", "CA", "CA", "CA", "CA", "CA", "CA", "CA", "CA", "CA",
"CA", "CA", "CA", "CA", "CA", "CA", "KY", "KY", "KY", "KY", "KY",
"KY", "KY", "KY", "KY", "KY", "KY", "KY", "KY", "KY", "KY", "KY",
"KY", "KY", "KY", "KY", "KY", "KY", "KY", "CF", "CF", "CF", "CF",
"CF", "CF", "CF", "CF", "CF", "CF", "CF", "CF", "CF", "CF", "CF",
"CF", "CF", "CF", "CF", "CF", "CF", "CF", "CF", "CF", "CF", "CF",
"CF", "CF", "CF", "CF", "CF", "CF", "CF", "CF", "CF", "CF", "TD",
"TD", "TD", "TD", "TD", "TD", "TD", "TD", "TD", "TD", "TD", "TD",
"TD", "TD", "TD", "TD", "TD", "TD", "TD", "TD", "TD", "TD", "TD",
"TD", "TD", "TD", "TD", "TD", "TD", "TD", "TD", "TD", "TD", "TD",
"TD", "CL", "CL", "CL", "CL", "CL", "CL", "CL", "CL", "CL", "CL",
"CL", "CL", "CL", "CL", "CL", "CL", "CL", "CL", "CL", "CL", "CL",
"CL", "CL", "CL", "CL", "CL", "CL", "CL", "CL", "CL", "CL", "CL",
"CL", "CN", "CN", "CN", "CN", "CN", "CN", "CN", "CN", "CN", "CN",
"CN", "CN", "CN", "CN", "CN", "CN", "CN", "CN", "CN", "CN", "CN",
"CN", "CN", "CN", "CN", "CN", "CN", "CN", "CN", "CN", "CN", "CN",
"HK", "HK", "HK", "HK", "HK", "HK", "HK", "HK", "HK", "HK", "HK",
"HK", "HK", "HK", "HK", "HK", "HK", "HK", "HK", "HK", "HK", "HK",
"HK", "HK", "HK", "HK", "HK", "HK", "HK", "HK", "HK", "HK", "HK",
"HK", "HK", "HK", "HK", "HK", "MO", "MO", "MO", "MO", "MO", "MO",
"MO", "MO", "MO", "MO", "MO", "MO", "MO", "MO", "MO", "MO", "MO",
"MO", "MO", "MO", "MO", "MO", "MO", "CO", "CO", "CO", "CO", "CO",
"CO", "CO", "CO", "CO", "CO", "CO", "CO", "CO", "CO", "CO", "CO",
"CO", "CO", "CO", "CO", "CO", "CO", "CO", "CO", "CO", "CO", "CO",
"CO", "CO", "CO", "CO", "CO", "CO", "CO", "CO", "CO", "KM", "KM",
"KM", "KM", "KM", "KM", "KM", "KM", "KM", "KM", "KM", "KM", "KM",
"KM", "KM", "KM", "KM", "KM", "KM", "KM", "CG", "CG", "CG", "CG",
"CG", "CG", "CG", "CG", "CG", "CG", "CG", "CG", "CG", "CG", "CG",
"CG", "CG", "CG", "CG", "CG", "CG", "CG", "CG", "CG", "CG", "CG",
"CG", "CG", "CG", "CG", "CG", "CG", "CG", "CG", "CG", "CG", "CK",
"CK", "CK", "CK", "CK", "CK", "CK", "CK", "CR", "CR", "CR", "CR",
"CR", "CR", "CR", "CR", "CR", "CR", "CR", "CR", "CR", "CR", "CR",
"CR", "CR", "CR", "CR", "CR", "CR", "CR", "CR", "CR", "CR", "CR",
"CR", "CR", "CR", "CR", "CR", "CR", "CR", "CR", "CR", "CI", "CI",
"CI", "CI", "CI", "CI", "CI", "CI", "CI", "CI", "CI", "CI", "CI",
"CI", "CI", "CI", "CI", "CI", "CI", "CI", "CI", "CI", "CI", "CI",
"CI", "CI", "CI", "CI", "CI", "CI", "CI", "CI", "CI", "CI", "CI",
"CI", "HR", "HR", "HR", "HR", "HR", "HR", "HR", "HR", "HR", "HR",
"HR", "HR", "HR", "HR", "HR", "HR", "HR", "HR", "HR", "HR", "HR",
"HR", "HR", "HR", "HR", "HR", "HR", "HR", "HR", "HR", "HR", "HR",
"HR", "HR", "HR", "HR", "CU", "CU", "CU", "CU", "CU", "CU", "CU",
"CU", "CU", "CU", "CU", "CU", "CU", "CU", "CU", "CU", "CU", "CU",
"CU", "CU", "CU", "CU", "CU", "CU", "CU", "CU", "CU", "CU", "CU",
"CU", "CU", "CU", "CU", "CW", "CW", "CW", "CW", "CW", "CW", "CW",
"CW", "CW", "CW", "CW", "CW", "CW", "CW", "CW", "CW", "CW", "CW",
"CW", "CW", "CW", "CW", "CW", "CW", "CW", "CW", "CW", "CW", "CY",
"CY", "CY", "CY", "CY", "CY", "CY", "CY", "CY", "CY", "CY", "CY",
"CY", "CY", "CY", "CY", "CY", "CY", "CY", "CY", "CY", "CY", "CY",
"CY", "CY", "CY", "CY", "CY", "CY", "CY", "CY", "CY", "CY", "CY",
"CY", "CZ", "CZ", "CZ", "CZ", "CZ", "CZ", "CZ", "CZ", "CZ", "CZ",
"CZ", "CZ", "CZ", "CZ", "CZ", "CZ", "CZ", "CZ", "CZ", "CZ", "CZ",
"CZ", "CZ", "CZ", "CZ", "CZ", "CZ", "CZ", "CZ", "CZ", "CZ", "CZ",
"CZ", "CZ", "CZ", "KP", "KP", "KP", "KP", "KP", "KP", "KP", "KP",
"KP", "KP", "KP", "KP", "KP", "KP", "KP", "KP", "CD", "CD", "CD",
"CD", "CD", "CD", "CD", "CD", "CD", "CD", "CD", "CD", "CD", "CD",
"CD", "CD", "CD", "CD", "CD", "CD", "CD", "CD", "CD", "CD", "CD",
"CD", "CD", "CD", "CD", "CD", "CD", "CD", "CD", "CD", "CD", "CD",
"DK", "DK", "DK", "DK", "DK", "DK", "DK", "DK", "DK", "DK", "DK",
"DK", "DK", "DK", "DK", "DK", "DK", "DK", "DK", "DK", "DK", "DK",
"DK", "DK", "DK", "DK", "DK", "DK", "DK", "DK", "DK", "DK", "DK",
"DK", "DK", "DK", "DJ", "DJ", "DJ", "DJ", "DJ", "DJ", "DJ", "DJ",
"DJ", "DJ", "DJ", "DJ", "DJ", "DJ", "DJ", "DJ", "DJ", "DJ", "DJ",
"DJ", "DJ", "DJ", "DJ", "DJ", "DJ", "DJ", "DJ", "DJ", "DJ", "DJ",
"DJ", "DJ", "DJ", "DJ", "DJ", "DJ", "DJ", "DM", "DM", "DM", "DM",
"DM", "DM", "DM", "DM", "DM", "DM", "DM", "DO", "DO", "DO", "DO",
"DO", "DO", "DO", "DO", "DO", "DO", "DO", "DO", "DO", "DO", "DO",
"DO", "DO", "DO", "DO", "DO", "DO", "DO", "DO", "DO", "DO", "DO",
"DO", "DO", "DO", "DO", "DO", "EC", "EC", "EC", "EC", "EC", "EC",
"EC", "EC", "EC", "EC", "EC", "EC", "EC", "EC", "EC", "EC", "EC",
"EC", "EC", "EC", "EC", "EC", "EC", "EC", "EC", "EC", "EC", "EC",
"EC", "EC", "EC", "EC", "EC", "EC", "EG", "EG", "EG", "EG", "EG",
"EG", "EG", "EG", "EG", "EG", "EG", "EG", "EG", "EG", "EG", "EG",
"EG", "EG", "EG", "EG", "EG", "EG", "EG", "EG", "EG", "EG", "EG",
"EG", "EG", "EG", "EG", "EG", "EG", "EG", "EG", "SV", "SV", "SV",
"SV", "SV", "SV", "SV", "SV", "SV", "SV", "SV", "SV", "SV", "SV",
"SV", "SV", "SV", "SV", "SV", "SV", "SV", "SV", "SV", "SV", "SV",
"SV", "SV", "SV", "SV", "SV", "SV", "SV", "SV", "GQ", "GQ", "GQ",
"GQ", "GQ", "GQ", "GQ", "GQ", "GQ", "GQ", "GQ", "GQ", "GQ", "GQ",
"GQ", "GQ", "ER", "ER", "ER", "ER", "ER", "ER", "ER", "ER", "ER",
"ER", "ER", "ER", "ER", "ER", "ER", "ER", "ER", "ER", "ER", "ER",
"ER", "ER", "ER", "ER", "ER", "ER", "ER", "ER", "ER", "ER", "ER",
"ER", "ER", "ER", "ER", "ER", "ER", "ER", "EE", "EE", "EE", "EE",
"EE", "EE", "EE", "EE", "EE", "EE", "EE", "EE", "EE", "EE", "EE",
"EE", "EE", "EE", "EE", "EE", "EE", "EE", "EE", "EE", "EE", "EE",
"EE", "EE", "EE", "EE", "EE", "EE", "EE", "EE", "EE", "EE", "SZ",
"SZ", "SZ", "SZ", "SZ", "SZ", "SZ", "SZ", "SZ", "SZ", "SZ", "SZ",
"SZ", "SZ", "SZ", "SZ", "SZ", "SZ", "SZ", "SZ", "SZ", "SZ", "SZ",
"SZ", "SZ", "SZ", "SZ", "SZ", "SZ", "SZ", "SZ", "SZ", "ET", "ET",
"ET", "ET", "ET", "ET", "ET", "ET", "ET", "ET", "ET", "ET", "ET",
"ET", "ET", "ET", "ET", "ET", "ET", "ET", "ET", "ET", "ET", "ET",
"ET", "ET", "ET", "ET", "ET", "ET", "ET", "ET", "ET", "ET", "ET",
"ET", "FK", "FK", "FK", "FK", "FK", "FK", "FK", "FK", "FO", "FO",
"FO", "FO", "FO", "FO", "FO", "FO", "FJ", "FJ", "FJ", "FJ", "FJ",
"FJ", "FJ", "FJ", "FJ", "FJ", "FJ", "FJ", "FJ", "FJ", "FJ", "FJ",
"FJ", "FJ", "FJ", "FJ", "FJ", "FJ", "FJ", "FJ", "FJ", "FJ", "FJ",
"FJ", "FJ", "FJ", "FI", "FI", "FI", "FI", "FI", "FI", "FI", "FI",
"FI", "FI", "FI", "FI", "FI", "FI", "FI", "FI", "FI", "FI", "FI",
"FI", "FI", "FI", "FI", "FI", "FI", "FI", "FI", "FI", "FI", "FI",
"FI", "FI", "FI", "FI", "FI", "FR", "FR", "FR", "FR", "FR", "FR",
"FR", "FR", "FR", "FR", "FR", "FR", "FR", "FR", "FR", "FR", "FR",
"FR", "FR", "FR", "FR", "FR", "FR", "FR", "FR", "FR", "FR", "FR",
"FR", "FR", "FR", "FR", "FR", "FR", "FR", "FR", "GF", "GF", "GF",
"GF", "GF", "GF", "GF", "GF", "GF", "GF", "GF", "GF", "GF", "GF",
"GF", "GF", "PF", "PF", "PF", "PF", "PF", "PF", "PF", "PF", "PF",
"PF", "PF", "PF", "PF", "PF", "PF", "PF", "GA", "GA", "GA", "GA",
"GA", "GA", "GA", "GA", "GA", "GA", "GA", "GA", "GA", "GA", "GA",
"GA", "GA", "GA", "GA", "GA", "GA", "GA", "GA", "GA", "GA", "GA",
"GA", "GA", "GA", "GA", "GA", "GA", "GA", "GA", "GA", "GA", "GA",
"GM", "GM", "GM", "GM", "GM", "GM", "GM", "GM", "GM", "GM", "GM",
"GM", "GM", "GM", "GM", "GM", "GM", "GM", "GM", "GM", "GM", "GM",
"GM", "GM", "GM", "GM", "GM", "GM", "GM", "GM", "GM", "GM", "GM",
"GM", "GM", "GM", "GM", "GE", "GE", "GE", "GE", "GE", "GE", "GE",
"GE", "GE", "GE", "GE", "GE", "GE", "GE", "GE", "GE", "GE", "GE",
"GE", "GE", "GE", "GE", "GE", "GE", "GE", "GE", "GE", "GE", "GE",
"GE", "GE", "GE", "GE", "GE", "GE", "GE", "DE", "DE", "DE", "DE",
"DE", "DE", "DE", "DE", "DE", "DE", "DE", "DE", "DE", "DE", "DE",
"DE", "DE", "DE", "DE", "DE", "DE", "DE", "DE", "DE", "DE", "DE",
"DE", "DE", "DE", "DE", "DE", "DE", "DE", "DE", "DE", "DE", "GH",
"GH", "GH", "GH", "GH", "GH", "GH", "GH", "GH", "GH", "GH", "GH",
"GH", "GH", "GH", "GH", "GH", "GH", "GH", "GH", "GH", "GH", "GH",
"GH", "GH", "GH", "GH", "GH", "GH", "GH", "GH", "GH", "GH", "GH",
"GH", "GH", "GH", "GI", "GI", "GI", "GI", "GI", "GI", "GI", "GI",
"GR", "GR", "GR", "GR", "GR", "GR", "GR", "GR", "GR", "GR", "GR",
"GR", "GR", "GR", "GR", "GR", "GR", "GR", "GR", "GR", "GR", "GR",
"GR", "GR", "GR", "GR", "GR", "GR", "GR", "GR", "GR", "GR", "GR",
"GR", "GR", "GR", "GL", "GL", "GL", "GL", "GL", "GL", "GL", "GL",
"GD", "GD", "GD", "GD", "GD", "GD", "GD", "GD", "GD", "GD", "GD",
"GD", "GD", "GD", "GD", "GD", "GD", "GD", "GD", "GD", "GD", "GD",
"GD", "GD", "GD", "GP", "GP", "GP", "GP", "GP", "GP", "GP", "GP",
"GP", "GP", "GP", "GP", "GP", "GP", "GP", "GP", "GU", "GU", "GU",
"GU", "GU", "GU", "GU", "GU", "GU", "GU", "GU", "GU", "GU", "GU",
"GU", "GU", "GT", "GT", "GT", "GT", "GT", "GT", "GT", "GT", "GT",
"GT", "GT", "GT", "GT", "GT", "GT", "GT", "GT", "GT", "GT", "GT",
"GT", "GT", "GT", "GT", "GT", "GT", "GT", "GT", "GT", "GT", "GT",
"GT", "GT", "GN", "GN", "GN", "GN", "GN", "GN", "GN", "GN", "GN",
"GN", "GN", "GN", "GN", "GN", "GN", "GN", "GN", "GN", "GN", "GN",
"GN", "GN", "GN", "GN", "GN", "GN", "GN", "GN", "GN", "GN", "GN",
"GN", "GN", "GN", "GN", "GN", "GN", "GW", "GW", "GW", "GW", "GW",
"GW", "GW", "GW", "GW", "GW", "GW", "GW", "GW", "GW", "GW", "GW",
"GW", "GW", "GW", "GW", "GW", "GW", "GW", "GW", "GW", "GW", "GW",
"GW", "GW", "GW", "GW", "GW", "GY", "GY", "GY", "GY", "GY", "GY",
"GY", "GY", "GY", "GY", "GY", "GY", "GY", "GY", "GY", "GY", "GY",
"GY", "GY", "GY", "GY", "GY", "GY", "GY", "GY", "GY", "GY", "GY",
"GY", "HT", "HT", "HT", "HT", "HT", "HT", "HT", "HT", "HT", "HT",
"HT", "HT", "HT", "HT", "HT", "HT", "HT", "HT", "HT", "HT", "HT",
"HT", "HT", "HT", "HT", "HT", "HT", "HT", "HT", "HT", "VA", "VA",
"VA", "VA", "VA", "VA", "VA", "VA", "HN", "HN", "HN", "HN", "HN",
"HN", "HN", "HN", "HN", "HN", "HN", "HN", "HN", "HN", "HN", "HN",
"HN", "HN", "HN", "HN", "HN", "HN", "HN", "HN", "HN", "HN", "HN",
"HN", "HN", "HN", "HN", "HN", "HN", "HU", "HU", "HU", "HU", "HU",
"HU", "HU", "HU", "HU", "HU", "HU", "HU", "HU", "HU", "HU", "HU",
"HU", "HU", "HU", "HU", "HU", "HU", "HU", "HU", "HU", "HU", "HU",
"HU", "HU", "HU", "HU", "HU", "HU", "HU", "HU", "HU", "IS", "IS",
"IS", "IS", "IS", "IS", "IS", "IS", "IS", "IS", "IS", "IS", "IS",
"IS", "IS", "IS", "IS", "IS", "IS", "IS", "IS", "IS", "IS", "IS",
"IS", "IS", "IS", "IS", "IS", "IS", "IS", "IS", "IS", "IS", "IS",
"IS", "IN", "IN", "IN", "IN", "IN", "IN", "IN", "IN", "IN", "IN",
"IN", "IN", "IN", "IN", "IN", "IN", "IN", "IN", "IN", "IN", "IN",
"IN", "IN", "IN", "IN", "IN", "IN", "IN", "IN", "IN", "IN", "IN",
"IN", "IN", "ID", "ID", "ID", "ID", "ID", "ID", "ID", "ID", "ID",
"ID", "ID", "ID", "ID", "ID", "ID", "ID", "ID", "ID", "ID", "ID",
"ID", "ID", "ID", "ID", "ID", "ID", "ID", "ID", "ID", "ID", "ID",
"ID", "ID", "ID", "IR", "IR", "IR", "IR", "IR", "IR", "IR", "IR",
"IR", "IR", "IR", "IR", "IR", "IR", "IR", "IR", "IR", "IR", "IR",
"IR", "IR", "IR", "IR", "IR", "IR", "IR", "IR", "IR", "IR", "IR",
"IR", "IR", "IR", "IR", "IR", "IR", "IQ", "IQ", "IQ", "IQ", "IQ",
"IQ", "IQ", "IQ", "IQ", "IQ", "IQ", "IQ", "IQ", "IQ", "IQ", "IQ",
"IQ", "IQ", "IQ", "IQ", "IQ", "IQ", "IQ", "IQ", "IQ", "IQ", "IQ",
"IQ", "IQ", "IQ", "IQ", "IQ", "IQ", "IQ", "IQ", "IQ", "IE", "IE",
"IE", "IE", "IE", "IE", "IE", "IE", "IE", "IE", "IE", "IE", "IE",
"IE", "IE", "IE", "IE", "IE", "IE", "IE", "IE", "IE", "IE", "IE",
"IE", "IE", "IE", "IE", "IE", "IE", "IE", "IE", "IE", "IE", "IE",
"IE", "IM", "IM", "IM", "IM", "IM", "IM", "IM", "IM", "IL", "IL",
"IL", "IL", "IL", "IL", "IL", "IL", "IL", "IL", "IL", "IL", "IL",
"IL", "IL", "IL", "IL", "IL", "IL", "IL", "IL", "IL", "IL", "IL",
"IL", "IL", "IL", "IL", "IL", "IL", "IL", "IL", "IL", "IL", "IL",
"IT", "IT", "IT", "IT", "IT", "IT", "IT", "IT", "IT", "IT", "IT",
"IT", "IT", "IT", "IT", "IT", "IT", "IT", "IT", "IT", "IT", "IT",
"IT", "IT", "IT", "IT", "IT", "IT", "IT", "IT", "IT", "IT", "IT",
"IT", "IT", "JM", "JM", "JM", "JM", "JM", "JM", "JM", "JM", "JM",
"JM", "JM", "JM", "JM", "JM", "JM", "JM", "JM", "JM", "JM", "JM",
"JM", "JM", "JM", "JM", "JM", "JM", "JM", "JM", "JM", "JP", "JP",
"JP", "JP", "JP", "JP", "JP", "JP", "JP", "JP", "JP", "JP", "JP",
"JP", "JP", "JP", "JP", "JP", "JP", "JP", "JP", "JP", "JP", "JP",
"JP", "JP", "JP", "JP", "JP", "JP", "JP", "JP", "JP", "JP", "JP",
"JP", "JO", "JO", "JO", "JO", "JO", "JO", "JO", "JO", "JO", "JO",
"JO", "JO", "JO", "JO", "JO", "JO", "JO", "JO", "JO", "JO", "JO",
"JO", "JO", "JO", "JO", "JO", "JO", "JO", "JO", "JO", "JO", "JO",
"JO", "JO", "JO", "KZ", "KZ", "KZ", "KZ", "KZ", "KZ", "KZ", "KZ",
"KZ", "KZ", "KZ", "KZ", "KZ", "KZ", "KZ", "KZ", "KZ", "KZ", "KZ",
"KZ", "KZ", "KZ", "KZ", "KZ", "KZ", "KZ", "KZ", "KZ", "KZ", "KZ",
"KZ", "KZ", "KZ", "KZ", "KZ", "KZ", "KE", "KE", "KE", "KE", "KE",
"KE", "KE", "KE", "KE", "KE", "KE", "KE", "KE", "KE", "KE", "KE",
"KE", "KE", "KE", "KE", "KE", "KE", "KE", "KE", "KE", "KE", "KE",
"KE", "KE", "KE", "KE", "KE", "KE", "KE", "KE", "KE", "KI", "KI",
"KI", "KI", "KI", "KI", "KI", "KI", "KI", "KI", "KI", "KI", "KI",
"KI", "KI", "KI", "KW", "KW", "KW", "KW", "KW", "KW", "KW", "KW",
"KW", "KW", "KW", "KW", "KW", "KW", "KW", "KW", "KW", "KW", "KW",
"KW", "KW", "KW", "KW", "KW", "KW", "KW", "KW", "KW", "KW", "KW",
"KW", "KW", "KW", "KW", "KW", "KW", "KG", "KG", "KG", "KG", "KG",
"KG", "KG", "KG", "KG", "KG", "KG", "KG", "KG", "KG", "KG", "KG",
"KG", "KG", "KG", "KG", "KG", "KG", "KG", "KG", "KG", "KG", "KG",
"KG", "KG", "KG", "KG", "KG", "KG", "KG", "KG", "KG", "LA", "LA",
"LA", "LA", "LA", "LA", "LA", "LA", "LA", "LA", "LA", "LA", "LA",
"LA", "LA", "LA", "LA", "LA", "LA", "LV", "LV", "LV", "LV", "LV",
"LV", "LV", "LV", "LV", "LV", "LV", "LV", "LV", "LV", "LV", "LV",
"LV", "LV", "LV", "LV", "LV", "LV", "LV", "LV", "LV", "LV", "LV",
"LV", "LV", "LV", "LV", "LV", "LV", "LV", "LV", "LV", "LB", "LB",
"LB", "LB", "LB", "LB", "LB", "LB", "LB", "LB", "LB", "LB", "LB",
"LB", "LB", "LB", "LB", "LB", "LB", "LB", "LB", "LB", "LB", "LB",
"LB", "LB", "LB", "LB", "LB", "LB", "LB", "LB", "LB", "LB", "LB",
"LB", "LS", "LS", "LS", "LS", "LS", "LS", "LS", "LS", "LS", "LS",
"LS", "LS", "LS", "LS", "LS", "LS", "LS", "LS", "LS", "LS", "LS",
"LS", "LS", "LS", "LS", "LS", "LR", "LR", "LR", "LR", "LR", "LR",
"LR", "LR", "LR", "LR", "LR", "LR", "LR", "LR", "LR", "LR", "LR",
"LR", "LR", "LR", "LR", "LR", "LR", "LR", "LR", "LR", "LR", "LR",
"LR", "LR", "LR", "LR", "LR", "LR", "LR", "LY", "LY", "LY", "LY",
"LY", "LY", "LY", "LY", "LY", "LY", "LY", "LY", "LY", "LY", "LY",
"LY", "LY", "LY", "LY", "LY", "LY", "LY", "LY", "LY", "LY", "LY",
"LY", "LY", "LY", "LY", "LY", "LY", "LY", "LY", "LY", "LY", "LI",
"LI", "LI", "LI", "LI", "LI", "LI", "LI", "LI", "LI", "LI", "LI",
"LI", "LI", "LI", "LI", "LI", "LI", "LI", "LI", "LI", "LI", "LI",
"LI", "LI", "LT", "LT", "LT", "LT", "LT", "LT", "LT", "LT", "LT",
"LT", "LT", "LT", "LT", "LT", "LT", "LT", "LT", "LT", "LT", "LT",
"LT", "LT", "LT", "LT", "LT", "LT", "LT", "LT", "LT", "LT", "LT",
"LT", "LT", "LT", "LT", "LT", "LU", "LU", "LU", "LU", "LU", "LU",
"LU", "LU", "LU", "LU", "LU", "LU", "LU", "LU", "LU", "LU", "LU",
"LU", "LU", "LU", "LU", "LU", "LU", "LU", "LU", "LU", "LU", "LU",
"LU", "LU", "LU", "LU", "LU", "LU", "LU", "MG", "MG", "MG", "MG",
"MG", "MG", "MG", "MG", "MG", "MG", "MG", "MG", "MG", "MG", "MG",
"MG", "MG", "MG", "MG", "MG", "MG", "MG", "MG", "MG", "MG", "MG",
"MG", "MG", "MW", "MW", "MW", "MW", "MW", "MW", "MW", "MW", "MW",
"MW", "MW", "MW", "MW", "MW", "MW", "MW", "MW", "MW", "MW", "MW",
"MW", "MW", "MW", "MW", "MW", "MW", "MW", "MW", "MW", "MW", "MW",
"MW", "MW", "MW", "MW", "MY", "MY", "MY", "MY", "MY", "MY", "MY",
"MY", "MY", "MY", "MY", "MY", "MY", "MY", "MY", "MY", "MY", "MY",
"MY", "MY", "MY", "MY", "MY", "MY", "MY", "MY", "MY", "MY", "MY",
"MY", "MY", "MY", "MY", "MY", "MY", "MY", "MV", "MV", "MV", "MV",
"MV", "MV", "MV", "MV", "MV", "MV", "MV", "MV", "MV", "MV", "MV",
"MV", "ML", "ML", "ML", "ML", "ML", "ML", "ML", "ML", "ML", "ML",
"ML", "ML", "ML", "ML", "ML", "ML", "ML", "ML", "ML", "ML", "ML",
"ML", "ML", "ML", "ML", "ML", "ML", "ML", "ML", "ML", "ML", "ML",
"ML", "ML", "MT", "MT", "MT", "MT", "MT", "MT", "MT", "MT", "MT",
"MT", "MT", "MT", "MT", "MT", "MT", "MT", "MT", "MT", "MT", "MT",
"MT", "MT", "MT", "MT", "MT", "MT", "MT", "MT", "MT", "MT", "MT",
"MT", "MH", "MH", "MH", "MH", "MH", "MH", "MH", "MH", "MQ", "MQ",
"MQ", "MQ", "MQ", "MQ", "MQ", "MQ", "MQ", "MQ", "MQ", "MQ", "MQ",
"MQ", "MQ", "MQ", "MR", "MR", "MR", "MR", "MR", "MR", "MR", "MR",
"MR", "MR", "MR", "MR", "MR", "MR", "MR", "MR", "MR", "MR", "MR",
"MR", "MR", "MR", "MR", "MR", "MR", "MR", "MR", "MR", "MR", "MR",
"MR", "MR", "MR", "MU", "MU", "MU", "MU", "MU", "MU", "MU", "MU",
"MU", "MU", "MU", "MU", "MU", "MU", "MU", "MU", "MU", "MU", "MU",
"MU", "MU", "YT", "YT", "YT", "YT", "YT", "YT", "YT", "YT", "YT",
"YT", "YT", "YT", "YT", "YT", "YT", "YT", "MX", "MX", "MX", "MX",
"MX", "MX", "MX", "MX", "MX", "MX", "MX", "MX", "MX", "MX", "MX",
"MX", "MX", "MX", "MX", "MX", "MX", "MX", "MX", "MX", "MX", "MX",
"MX", "MX", "MX", "MX", "MX", "MX", "MX", "MX", "FM", "FM", "FM",
"FM", "FM", "FM", "FM", "FM", "FM", "FM", "FM", "FM", "FM", "FM",
"FM", "FM", "FM", "FM", "FM", "FM", "FM", "FM", "FM", "MC", "MC",
"MC", "MC", "MC", "MC", "MC", "MC", "MC", "MC", "MC", "MC", "MC",
"MC", "MC", "MC", "MN", "MN", "MN", "MN", "MN", "MN", "MN", "MN",
"MN", "MN", "MN", "MN", "MN", "MN", "MN", "MN", "MN", "MN", "MN",
"MN", "MN", "MN", "MN", "MN", "MN", "MN", "MN", "MN", "MN", "MN",
"MN", "MN", "MN", "MN", "MN", "ME", "ME", "ME", "ME", "ME", "ME",
"ME", "ME", "ME", "ME", "ME", "ME", "ME", "ME", "ME", "ME", "ME",
"ME", "ME", "ME", "ME", "ME", "ME", "ME", "ME", "ME", "ME", "ME",
"MS", "MS", "MS", "MS", "MS", "MS", "MS", "MS", "MS", "MS", "MA",
"MA", "MA", "MA", "MA", "MA", "MA", "MA", "MA", "MA", "MA", "MA",
"MA", "MA", "MA", "MA", "MA", "MA", "MA", "MA", "MA", "MA", "MA",
"MA", "MA", "MA", "MA", "MA", "MA", "MA", "MA", "MA", "MZ", "MZ",
"MZ", "MZ", "MZ", "MZ", "MZ", "MZ", "MZ", "MZ", "MZ", "MZ", "MZ",
"MZ", "MZ", "MZ", "MZ", "MZ", "MZ", "MZ", "MZ", "MZ", "MZ", "MZ",
"MZ", "MZ", "MZ", "MZ", "MZ", "MZ", "MZ", "MZ", "MZ", "MZ", "MZ",
"MZ", "MM", "MM", "MM", "MM", "MM", "MM", "MM", "MM", "MM", "MM",
"MM", "MM", "MM", "MM", "MM", "MM", "MM", "MM", "MM", "MM", "MM",
"MM", "MM", "MM", "MM", "MM", "MM", "MM", "MM", "NA", "NA", "NA",
"NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA",
"NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA",
"NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA",
"NR", "NR", "NR", "NR", "NR", "NR", "NR", "NR", "NR", "NR", "NR",
"NR", "NR", "NR", "NR", "NR", "NR", "NR", "NP", "NP", "NP", "NP",
"NP", "NP", "NP", "NP", "NP", "NP", "NP", "NP", "NP", "NP", "NP",
"NP", "NP", "NP", "NP", "NP", "NP", "NP", "NP", "NP", "NP", "NP",
"NP", "NP", "NP", "NP", "NP", "NP", "NP", "NP", "NP", "NP", "NL",
"NL", "NL", "NL", "NL", "NL", "NL", "NL", "NL", "NL", "NL", "NL",
"NL", "NL", "NL", "NL", "NL", "NL", "NL", "NL", "NL", "NL", "NL",
"NL", "NL", "NL", "NL", "NL", "NL", "NL", "NL", "NL", "NL", "NL",
"NL", "NL", "NC", "NC", "NC", "NC", "NC", "NC", "NC", "NC", "NC",
"NC", "NC", "NC", "NC", "NC", "NC", "NC", "NZ", "NZ", "NZ", "NZ",
"NZ", "NZ", "NZ", "NZ", "NZ", "NZ", "NZ", "NZ", "NZ", "NZ", "NZ",
"NZ", "NZ", "NZ", "NZ", "NZ", "NZ", "NZ", "NZ", "NZ", "NZ", "NZ",
"NZ", "NZ", "NZ", "NZ", "NZ", "NZ", "NZ", "NZ", "NI", "NI", "NI",
"NI", "NI", "NI", "NI", "NI", "NI", "NI", "NI", "NI", "NI", "NI",
"NI", "NI", "NI", "NI", "NI", "NI", "NI", "NI", "NI", "NI", "NI",
"NI", "NI", "NI", "NI", "NI", "NI", "NI", "NI", "NI", "NE", "NE",
"NE", "NE", "NE", "NE", "NE", "NE", "NE", "NE", "NE", "NE", "NE",
"NE", "NE", "NE", "NE", "NE", "NE", "NE", "NE", "NE", "NE", "NE",
"NE", "NE", "NE", "NE", "NE", "NE", "NE", "NE", "NE", "NE", "NE",
"NE", "NG", "NG", "NG", "NG", "NG", "NG", "NG", "NG", "NG", "NG",
"NG", "NG", "NG", "NG", "NG", "NG", "NG", "NG", "NG", "NG", "NG",
"NG", "NG", "NG", "NG", "NG", "NG", "NG", "NG", "NG", "NG", "NG",
"NG", "NG", "NG", "NG", "NU", "NU", "NU", "NU", "NU", "NU", "NU",
"NU", "MK", "MK", "MK", "MK", "MK", "MK", "MK", "MK", "MK", "MK",
"MK", "MK", "MK", "MK", "MK", "MK", "MK", "MK", "MK", "MK", "MK",
"MK", "MK", "MK", "MK", "MK", "MK", "MK", "MK", "MK", "MK", "MK",
"MK", "MK", "MK", "MK", "MP", "MP", "MP", "MP", "MP", "MP", "MP",
"MP", "NO", "NO", "NO", "NO", "NO", "NO", "NO", "NO", "NO", "NO",
"NO", "NO", "NO", "NO", "NO", "NO", "NO", "NO", "NO", "NO", "NO",
"NO", "NO", "NO", "NO", "NO", "NO", "NO", "NO", "NO", "NO", "NO",
"NO", "NO", "NO", "OM", "OM", "OM", "OM", "OM", "OM", "OM", "OM",
"OM", "OM", "OM", "OM", "OM", "OM", "OM", "OM", "OM", "OM", "OM",
"OM", "OM", "OM", "OM", "OM", "OM", "OM", "OM", "OM", "OM", "OM",
"OM", "PK", "PK", "PK", "PK", "PK", "PK", "PK", "PK", "PK", "PK",
"PK", "PK", "PK", "PK", "PK", "PK", "PK", "PK", "PK", "PK", "PK",
"PK", "PK", "PK", "PK", "PK", "PK", "PK", "PK", "PK", "PK", "PK",
"PK", "PK", "PK", "PK", "PW", "PW", "PW", "PW", "PW", "PW", "PW",
"PW", "PW", "PW", "PW", "PW", "PW", "PW", "PA", "PA", "PA", "PA",
"PA", "PA", "PA", "PA", "PA", "PA", "PA", "PA", "PA", "PA", "PA",
"PA", "PA", "PA", "PA", "PA", "PA", "PA", "PA", "PA", "PA", "PA",
"PA", "PA", "PA", "PA", "PA", "PA", "PA", "PA", "PA", "PA", "PG",
"PG", "PG", "PG", "PG", "PG", "PG", "PG", "PG", "PG", "PG", "PG",
"PG", "PG", "PG", "PG", "PG", "PG", "PG", "PG", "PG", "PG", "PG",
"PG", "PG", "PG", "PG", "PG", "PG", "PG", "PG", "PG", "PG", "PY",
"PY", "PY", "PY", "PY", "PY", "PY", "PY", "PY", "PY", "PY", "PY",
"PY", "PY", "PY", "PY", "PY", "PY", "PY", "PY", "PY", "PY", "PY",
"PY", "PY", "PY", "PY", "PY", "PY", "PY", "PY", "PY", "PY", "PE",
"PE", "PE", "PE", "PE", "PE", "PE", "PE", "PE", "PE", "PE", "PE",
"PE", "PE", "PE", "PE", "PE", "PE", "PE", "PE", "PE", "PE", "PE",
"PE", "PE", "PE", "PE", "PE", "PE", "PE", "PE", "PE", "PE", "PE",
"PE", "PH", "PH", "PH", "PH", "PH", "PH", "PH", "PH", "PH", "PH",
"PH", "PH", "PH", "PH", "PH", "PH", "PH", "PH", "PH", "PH", "PH",
"PH", "PH", "PH", "PH", "PH", "PH", "PH", "PH", "PH", "PH", "PH",
"PH", "PH", "PH", "PH", "PL", "PL", "PL", "PL", "PL", "PL", "PL",
"PL", "PL", "PL", "PL", "PL", "PL", "PL", "PL", "PL", "PL", "PL",
"PL", "PL", "PL", "PL", "PL", "PL", "PL", "PL", "PL", "PL", "PL",
"PL", "PL", "PL", "PL", "PL", "PL", "PL", "PT", "PT", "PT", "PT",
"PT", "PT", "PT", "PT", "PT", "PT", "PT", "PT", "PT", "PT", "PT",
"PT", "PT", "PT", "PT", "PT", "PT", "PT", "PT", "PT", "PT", "PT",
"PT", "PT", "PT", "PT", "PT", "PT", "PT", "PT", "PR", "PR", "PR",
"PR", "PR", "PR", "PR", "PR", "PR", "PR", "PR", "PR", "PR", "PR",
"PR", "PR", "QA", "QA", "QA", "QA", "QA", "QA", "QA", "QA", "QA",
"QA", "QA", "QA", "QA", "QA", "QA", "QA", "QA", "QA", "QA", "QA",
"QA", "QA", "QA", "QA", "QA", "QA", "QA", "QA", "QA", "QA", "QA",
"QA", "QA", "QA", "QA", "KR", "KR", "KR", "KR", "KR", "KR", "KR",
"KR", "KR", "KR", "KR", "KR", "KR", "KR", "KR", "KR", "KR", "KR",
"KR", "KR", "KR", "KR", "KR", "KR", "KR", "KR", "KR", "KR", "KR",
"KR", "KR", "KR", "KR", "KR", "KR", "MD", "MD", "MD", "MD", "MD",
"MD", "MD", "MD", "MD", "MD", "MD", "MD", "MD", "MD", "MD", "MD",
"MD", "MD", "MD", "MD", "MD", "MD", "MD", "MD", "MD", "MD", "MD",
"MD", "MD", "MD", "MD", "MD", "MD", "MD", "MD", "MD", "RE", "RE",
"RE", "RE", "RE", "RE", "RE", "RE", "RE", "RE", "RE", "RE", "RE",
"RE", "RE", "RE", "RO", "RO", "RO", "RO", "RO", "RO", "RO", "RO",
"RO", "RO", "RO", "RO", "RO", "RO", "RO", "RO", "RO", "RO", "RO",
"RO", "RO", "RO", "RO", "RO", "RO", "RO", "RO", "RO", "RO", "RO",
"RO", "RO", "RO", "RO", "RO", "RO", "RU", "RU", "RU", "RU", "RU",
"RU", "RU", "RU", "RU", "RU", "RU", "RU", "RU", "RU", "RU", "RU",
"RU", "RU", "RU", "RU", "RU", "RU", "RU", "RU", "RU", "RU", "RU",
"RU", "RU", "RU", "RU", "RU", "RU", "RU", "RU", "RU", "RW", "RW",
"RW", "RW", "RW", "RW", "RW", "RW", "RW", "RW", "RW", "RW", "RW",
"RW", "RW", "RW", "RW", "RW", "RW", "RW", "RW", "RW", "RW", "RW",
"RW", "RW", "RW", "RW", "RW", "RW", "RW", "RW", "RW", "RW", "RW",
"RW", "SH", "SH", "SH", "SH", "SH", "SH", "SH", "SH", "KN", "KN",
"KN", "KN", "KN", "KN", "KN", "KN", "KN", "KN", "KN", "KN", "KN",
"KN", "LC", "LC", "LC", "LC", "LC", "LC", "LC", "LC", "LC", "LC",
"LC", "LC", "LC", "LC", "LC", "LC", "LC", "LC", "LC", "LC", "LC",
"LC", "LC", "LC", "LC", "LC", "PM", "PM", "PM", "PM", "PM", "PM",
"PM", "PM", "VC", "VC", "VC", "VC", "VC", "VC", "VC", "VC", "VC",
"VC", "VC", "VC", "VC", "VC", "VC", "VC", "VC", "VC", "VC", "VC",
"WS", "WS", "WS", "WS", "WS", "WS", "WS", "WS", "WS", "WS", "WS",
"WS", "WS", "WS", "WS", "WS", "WS", "WS", "WS", "WS", "SM", "SM",
"SM", "SM", "SM", "SM", "SM", "SM", "ST", "ST", "ST", "ST", "ST",
"ST", "ST", "ST", "ST", "ST", "ST", "ST", "ST", "ST", "ST", "ST",
"SA", "SA", "SA", "SA", "SA", "SA", "SA", "SA", "SA", "SA", "SA",
"SA", "SA", "SA", "SA", "SA", "SA", "SA", "SA", "SA", "SA", "SA",
"SA", "SA", "SA", "SA", "SA", "SA", "SA", "SA", "SA", "SA", "SA",
"SA", "SA", "SA", "SN", "SN", "SN", "SN", "SN", "SN", "SN", "SN",
"SN", "SN", "SN", "SN", "SN", "SN", "SN", "SN", "SN", "SN", "SN",
"SN", "SN", "SN", "SN", "SN", "SN", "SN", "SN", "SN", "SN", "SN",
"SN", "SN", "SN", "SN", "SN", "SN", "SN", "RS", "RS", "RS", "RS",
"RS", "RS", "RS", "RS", "RS", "RS", "RS", "RS", "RS", "RS", "RS",
"RS", "RS", "RS", "RS", "RS", "RS", "RS", "RS", "RS", "RS", "RS",
"RS", "RS", "RS", "RS", "RS", "RS", "RS", "RS", "RS", "RS", "SC",
"SC", "SC", "SC", "SC", "SC", "SC", "SC", "SC", "SC", "SC", "SC",
"SC", "SC", "SC", "SC", "SC", "SC", "SL", "SL", "SL", "SL", "SL",
"SL", "SL", "SL", "SL", "SL", "SL", "SL", "SL", "SL", "SL", "SL",
"SL", "SL", "SL", "SL", "SL", "SL", "SL", "SL", "SL", "SL", "SL",
"SL", "SL", "SL", "SL", "SL", "SL", "SL", "SL", "SG", "SG", "SG",
"SG", "SG", "SG", "SG", "SG", "SG", "SG", "SG", "SG", "SG", "SG",
"SG", "SG", "SG", "SG", "SG", "SG", "SG", "SG", "SG", "SG", "SG",
"SG", "SG", "SG", "SX", "SX", "SX", "SX", "SX", "SX", "SX", "SX",
"SX", "SX", "SX", "SX", "SX", "SX", "SX", "SX", "SX", "SX", "SX",
"SX", "SK", "SK", "SK", "SK", "SK", "SK", "SK", "SK", "SK", "SK",
"SK", "SK", "SK", "SK", "SK", "SK", "SK", "SK", "SK", "SK", "SK",
"SK", "SK", "SK", "SK", "SK", "SK", "SK", "SK", "SK", "SK", "SK",
"SK", "SK", "SK", "SI", "SI", "SI", "SI", "SI", "SI", "SI", "SI",
"SI", "SI", "SI", "SI", "SI", "SI", "SI", "SI", "SI", "SI", "SI",
"SI", "SI", "SI", "SI", "SI", "SI", "SI", "SI", "SI", "SI", "SI",
"SI", "SI", "SI", "SI", "SI", "SI", "SI", "SI", "SI", "SB", "SB",
"SB", "SB", "SB", "SB", "SB", "SB", "SB", "SB", "SB", "SB", "SB",
"SB", "SB", "SB", "SB", "SB", "SB", "SB", "SB", "SB", "SO", "SO",
"SO", "SO", "SO", "SO", "SO", "SO", "SO", "SO", "SO", "SO", "SO",
"SO", "SO", "SO", "SO", "SO", "SO", "SO", "SO", "SO", "SO", "SO",
"SO", "SO", "SO", "SO", "SO", "SO", "SO", "SO", "SO", "SO", "SO",
"SO", "ZA", "ZA", "ZA", "ZA", "ZA", "ZA", "ZA", "ZA", "ZA", "ZA",
"ZA", "ZA", "ZA", "ZA", "ZA", "ZA", "ZA", "ZA", "ZA", "ZA", "ZA",
"ZA", "ZA", "ZA", "ZA", "ZA", "ZA", "ZA", "ZA", "ZA", "ZA", "ZA",
"ZA", "SS", "SS", "SS", "SS", "SS", "SS", "SS", "SS", "SS", "SS",
"SS", "SS", "SS", "SS", "SS", "SS", "SS", "SS", "SS", "SS", "SS",
"SS", "SS", "SS", "ES", "ES", "ES", "ES", "ES", "ES", "ES", "ES",
"ES", "ES", "ES", "ES", "ES", "ES", "ES", "ES", "ES", "ES", "ES",
"ES", "ES", "ES", "ES", "ES", "ES", "ES", "ES", "ES", "ES", "ES",
"ES", "ES", "ES", "ES", "ES", "LK", "LK", "LK", "LK", "LK", "LK",
"LK", "LK", "LK", "LK", "LK", "LK", "LK", "LK", "LK", "LK", "LK",
"LK", "LK", "LK", "LK", "LK", "LK", "LK", "LK", "LK", "LK", "LK",
"LK", "LK", "LK", "LK", "LK", "LK", "LK", "LK", "PS", "PS", "PS",
"PS", "PS", "PS", "PS", "PS", "PS", "PS", "PS", "PS", "PS", "PS",
"PS", "PS", "PS", "PS", "SD", "SD", "SD", "SD", "SD", "SD", "SD",
"SD", "SD", "SD", "SD", "SD", "SD", "SD", "SD", "SD", "SD", "SD",
"SD", "SD", "SD", "SD", "SD", "SD", "SD", "SD", "SD", "SD", "SD",
"SD", "SD", "SD", "SD", "SD", "SD", "SD", "SR", "SR", "SR", "SR",
"SR", "SR", "SR", "SR", "SR", "SR", "SR", "SR", "SR", "SR", "SR",
"SR", "SR", "SR", "SR", "SR", "SR", "SR", "SR", "SR", "SR", "SR",
"SR", "SR", "SR", "SR", "SR", "SE", "SE", "SE", "SE", "SE", "SE",
"SE", "SE", "SE", "SE", "SE", "SE", "SE", "SE", "SE", "SE", "SE",
"SE", "SE", "SE", "SE", "SE", "SE", "SE", "SE", "SE", "SE", "SE",
"SE", "SE", "SE", "SE", "SE", "SE", "SE", "SE", "CH", "CH", "CH",
"CH", "CH", "CH", "CH", "CH", "CH", "CH", "CH", "CH", "CH", "CH",
"CH", "CH", "CH", "CH", "CH", "CH", "CH", "CH", "CH", "CH", "CH",
"CH", "CH", "CH", "CH", "CH", "CH", "CH", "CH", "CH", "CH", "SY",
"SY", "SY", "SY", "SY", "SY", "SY", "SY", "SY", "SY", "SY", "SY",
"SY", "SY", "SY", "SY", "SY", "SY", "SY", "SY", "SY", "SY", "SY",
"SY", "SY", "SY", "SY", "SY", "SY", "SY", "SY", "SY", "SY", "SY",
"SY", "SY", "TJ", "TJ", "TJ", "TJ", "TJ", "TJ", "TJ", "TJ", "TJ",
"TJ", "TJ", "TJ", "TJ", "TJ", "TJ", "TJ", "TJ", "TJ", "TJ", "TJ",
"TJ", "TJ", "TJ", "TJ", "TJ", "TJ", "TJ", "TJ", "TJ", "TJ", "TJ",
"TJ", "TJ", "TJ", "TJ", "TJ", "TH", "TH", "TH", "TH", "TH", "TH",
"TH", "TH", "TH", "TH", "TH", "TH", "TH", "TH", "TH", "TH", "TH",
"TH", "TH", "TH", "TH", "TH", "TH", "TH", "TH", "TH", "TH", "TH",
"TH", "TH", "TH", "TH", "TH", "TH", "TH", "TH", "TL", "TL", "TL",
"TL", "TL", "TL", "TL", "TL", "TL", "TL", "TL", "TL", "TL", "TL",
"TL", "TL", "TL", "TL", "TL", "TL", "TL", "TL", "TL", "TL", "TL",
"TL", "TG", "TG", "TG", "TG", "TG", "TG", "TG", "TG", "TG", "TG",
"TG", "TG", "TG", "TG", "TG", "TG", "TG", "TG", "TG", "TG", "TG",
"TG", "TG", "TG", "TG", "TG", "TG", "TG", "TG", "TG", "TG", "TG",
"TG", "TG", "TG", "TG", "TG", "TK", "TK", "TK", "TK", "TK", "TK",
"TK", "TK", "TO", "TO", "TO", "TO", "TO", "TO", "TO", "TO", "TO",
"TO", "TO", "TO", "TO", "TO", "TO", "TO", "TO", "TO", "TO", "TO",
"TT", "TT", "TT", "TT", "TT", "TT", "TT", "TT", "TT", "TT", "TT",
"TT", "TT", "TT", "TT", "TT", "TT", "TT", "TT", "TT", "TT", "TT",
"TT", "TT", "TT", "TT", "TT", "TT", "TT", "TT", "TN", "TN", "TN",
"TN", "TN", "TN", "TN", "TN", "TN", "TN", "TN", "TN", "TN", "TN",
"TN", "TN", "TN", "TN", "TN", "TN", "TN", "TN", "TN", "TN", "TN",
"TN", "TN", "TN", "TN", "TN", "TN", "TN", "TN", "TN", "TN", "TR",
"TR", "TR", "TR", "TR", "TR", "TR", "TR", "TR", "TR", "TR", "TR",
"TR", "TR", "TR", "TR", "TR", "TR", "TR", "TR", "TR", "TR", "TR",
"TR", "TR", "TR", "TR", "TR", "TR", "TR", "TR", "TR", "TR", "TR",
"TR", "TR", "TM", "TM", "TM", "TM", "TM", "TM", "TM", "TM", "TM",
"TM", "TM", "TM", "TM", "TM", "TM", "TM", "TM", "TM", "TM", "TM",
"TM", "TM", "TM", "TM", "TM", "TM", "TM", "TM", "TM", "TM", "TM",
"TM", "TC", "TC", "TC", "TC", "TC", "TC", "TC", "TC", "TC", "TC",
"TC", "TC", "TC", "TC", "TC", "TC", "TC", "TC", "TC", "TV", "TV",
"TV", "TV", "TV", "TV", "TV", "TV", "UG", "UG", "UG", "UG", "UG",
"UG", "UG", "UG", "UG", "UG", "UG", "UG", "UG", "UG", "UG", "UG",
"UG", "UG", "UG", "UG", "UG", "UG", "UG", "UG", "UG", "UG", "UG",
"UG", "UG", "UG", "UG", "UG", "UG", "UG", "UG", "UG", "UA", "UA",
"UA", "UA", "UA", "UA", "UA", "UA", "UA", "UA", "UA", "UA", "UA",
"UA", "UA", "UA", "UA", "UA", "UA", "UA", "UA", "UA", "UA", "UA",
"UA", "UA", "UA", "UA", "UA", "UA", "UA", "UA", "UA", "UA", "UA",
"UA", "AE", "AE", "AE", "AE", "AE", "AE", "AE", "AE", "AE", "AE",
"AE", "AE", "AE", "AE", "AE", "AE", "AE", "AE", "AE", "AE", "AE",
"AE", "AE", "AE", "AE", "AE", "AE", "AE", "AE", "AE", "AE", "AE",
"AE", "GB", "GB", "GB", "GB", "GB", "GB", "GB", "GB", "GB", "GB",
"GB", "GB", "GB", "GB", "GB", "GB", "GB", "GB", "GB", "GB", "GB",
"GB", "GB", "GB", "GB", "GB", "GB", "GB", "GB", "GB", "GB", "GB",
"GB", "GB", "GB", "GB", "TZ", "TZ", "TZ", "TZ", "TZ", "TZ", "TZ",
"TZ", "TZ", "TZ", "TZ", "TZ", "TZ", "TZ", "TZ", "TZ", "TZ", "TZ",
"TZ", "TZ", "TZ", "TZ", "TZ", "TZ", "TZ", "TZ", "TZ", "TZ", "TZ",
"TZ", "TZ", "TZ", "TZ", "TZ", "TZ", "TZ", "US", "US", "US", "US",
"US", "US", "US", "US", "US", "US", "US", "US", "US", "US", "US",
"US", "US", "US", "US", "US", "US", "US", "US", "US", "US", "US",
"US", "US", "US", "US", "US", "US", "VI", "VI", "VI", "VI", "VI",
"VI", "VI", "VI", "VI", "VI", "VI", "VI", "VI", "VI", "VI", "VI",
"UY", "UY", "UY", "UY", "UY", "UY", "UY", "UY", "UY", "UY", "UY",
"UY", "UY", "UY", "UY", "UY", "UY", "UY", "UY", "UY", "UY", "UY",
"UY", "UY", "UY", "UY", "UY", "UY", "UY", "UY", "UY", "UY", "UY",
"UZ", "UZ", "UZ", "UZ", "UZ", "UZ", "UZ", "UZ", "UZ", "UZ", "UZ",
"UZ", "UZ", "UZ", "UZ", "UZ", "UZ", "UZ", "UZ", "UZ", "UZ", "UZ",
"UZ", "UZ", "UZ", "UZ", "UZ", "UZ", "UZ", "UZ", "UZ", "UZ", "VU",
"VU", "VU", "VU", "VU", "VU", "VU", "VU", "VU", "VU", "VU", "VU",
"VU", "VU", "VU", "VU", "VU", "VU", "VU", "VU", "VU", "VU", "VE",
"VE", "VE", "VE", "VE", "VE", "VE", "VE", "VE", "VE", "VE", "VE",
"VE", "VE", "VE", "VE", "VE", "VE", "VE", "VE", "VE", "VE", "VE",
"VE", "VE", "VE", "VE", "VE", "VE", "VE", "VE", "VE", "VE", "VE",
"VN", "VN", "VN", "VN", "VN", "VN", "VN", "VN", "VN", "VN", "VN",
"VN", "VN", "VN", "VN", "VN", "VN", "VN", "VN", "VN", "VN", "VN",
"VN", "VN", "VN", "VN", "VN", "VN", "VN", "WF", "WF", "WF", "WF",
"WF", "WF", "WF", "WF", "EH", "EH", "EH", "EH", "EH", "EH", "EH",
"EH", "EH", "EH", "EH", "EH", "EH", "EH", "EH", "EH", "YE", "YE",
"YE", "YE", "YE", "YE", "YE", "YE", "YE", "YE", "YE", "YE", "YE",
"YE", "YE", "YE", "YE", "YE", "YE", "YE", "YE", "YE", "YE", "YE",
"YE", "YE", "YE", "YE", "YE", "YE", "YE", "YE", "YE", "YE", "YE",
"YE", "ZM", "ZM", "ZM", "ZM", "ZM", "ZM", "ZM", "ZM", "ZM", "ZM",
"ZM", "ZM", "ZM", "ZM", "ZM", "ZM", "ZM", "ZM", "ZM", "ZM", "ZM",
"ZM", "ZM", "ZM", "ZM", "ZM", "ZM", "ZM", "ZM", "ZM", "ZM", "ZM",
"ZM", "ZM", "ZM", "ZM", "ZW", "ZW", "ZW", "ZW", "ZW", "ZW", "ZW",
"ZW", "ZW", "ZW", "ZW", "ZW", "ZW", "ZW", "ZW", "ZW", "ZW", "ZW",
"ZW", "ZW", "ZW", "ZW", "ZW", "ZW", "ZW", "ZW", "ZW", "ZW", "ZW",
"ZW", "ZW", "ZW", "ZW", "ZW", "ZW"), Year = c(2005, 2005, 2005,
2005, 2005, 2005, 2005, 2005, 2010, 2010, 2010, 2010, 2010, 2010,
2010, 2010, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2020,
2020, 2020, 2020, 2020, 2020, 2020, 2020, 2022, 2022, 2022, 2022,
2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2010, 2010, 2010,
2010, 2010, 2010, 2010, 2015, 2015, 2015, 2015, 2015, 2015, 2015,
2015, 2020, 2020, 2020, 2020, 2020, 2020, 2020, 2020, 2022, 2022,
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", NA, NA, NA, NA, NA, NA, NA, NA, NA, NA,
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"Blend", "Blend", "Blend", "Blend", "Blend", "Blend", "Blend",
"Blend", "Blend", "Blend", "Blend", "Blend", "Blend", "Blend",
"Blend", "Blend", "Blend", "Blend", "Blend", "Blend", "Blend",
"Blend", "Blend", "Blend", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "Blend", "Blend", "Blend", "Blend", "Blend", "Blend",
"Blend", "Blend", "Blend", "Blend", "Blend", "Blend", "Blend",
"Blend", "Blend", "Blend", "Blend", "Blend", "Blend", "Blend",
"Blend", "Blend", "Blend", "Blend", "Blend", "Blend", "Blend",
"Blend", "Blend", "Blend", "Blend", "Blend", "Blend", "Blend",
"Blend", "Blend", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "Blend", "Blend", "Blend",
"Blend", "Blend", "Blend", "Blend", "Blend", "Blend", "Blend",
"Blend", "Blend", "Blend", "Blend", "Blend", "Blend", "Blend",
"Blend", "Blend", "Blend", "Blend", "Blend", "Blend", "Blend",
"Blend", "Blend", "Blend", "Blend", "Blend", "Blend", "Blend",
"Blend", "Blend", "Blend", "Blend", "Blend", NA, NA, NA, NA,
NA, NA, NA, NA, "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "Blend", "Blend", "Blend", "Blend", "Blend", "Blend",
"Blend", "Blend", "Blend", "Blend", "Blend", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", NA, NA, NA, NA, NA, NA, NA, NA, "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Blend",
"Blend", "Blend", "Blend", "Blend", "Blend", "Blend", "Blend",
"Blend", "Blend", "Blend", "Blend", "Blend", "Blend", "Blend",
"Blend", "Blend", "Blend", "Blend", "Blend", "Blend", "Blend",
"Blend", "Blend", "Blend", "Blend", "Blend", "Blend", "Blend",
"Blend", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA,
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Blend", "Blend", "Blend", "Blend", "Blend",
"Blend", "Blend", "Blend", "Blend", "Blend", "Blend", "Blend",
"Blend", "Blend", "Blend", "Blend", "Blend", "Blend", "Blend",
"Blend", "Blend", "Blend", "Blend", "Blend", "Blend", NA, NA,
NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", NA, NA, NA, NA, NA, NA, NA, NA, "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "Blend", "Blend",
"Blend", "Blend", "Blend", "Blend", "Blend", "Blend", "Blend",
"Blend", "Blend", "Blend", "Blend", "Blend", "Blend", "Blend",
"Blend", "Blend", "Blend", "Blend", "Blend", "Blend", "Blend",
"Blend", "Blend", "Blend", "Blend", "Blend", "Blend", "Blend",
"Blend", "Blend", "Blend", "Blend", "Blend", "Blend", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA,
NA, NA, "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", NA, NA, NA, NA, NA, NA, NA, NA, NA, NA,
NA, NA, NA, NA, NA, NA, "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"Blend", "Blend", "Blend", "Blend", "Blend", "Blend", "Blend",
"Blend", "Blend", "Blend", "Blend", "Blend", "Blend", "Blend",
"Blend", "Blend", "Blend", "Blend", "Blend", "Blend", "Blend",
"Blend", "Blend", "Blend", "Blend", "Blend", "Blend", "Blend",
"Blend", "Blend", "Blend", "Blend", "Blend", "Blend", "Blend",
"Blend", NA, NA, NA, NA, NA, NA, NA, NA, "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Blend",
"Blend", "Blend", "Blend", "Blend", "Blend", "Blend", "Blend",
"Blend", "Blend", "Blend", "Blend", "Blend", "Blend", "Blend",
"Blend", "Blend", "Blend", "Blend", "Blend", "Blend", "Blend",
"Blend", "Blend", "Blend", "Blend", "Blend", "Blend", "Blend",
"Blend", "Blend", "Blend", "Blend", "Blend", "Blend", "Blend",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "Blend", "Blend", "Blend", "Blend", "Blend",
"Blend", "Blend", "Blend", "Blend", "Blend", "Blend", "Blend",
"Blend", "Blend", "Blend", "Blend", "Blend", "Blend", "Blend",
"Blend", "Blend", "Blend", "Blend", "Blend", "Blend", "Blend",
"Blend", "Blend", "Blend", "Blend", "Blend", "Blend", "Blend",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA,
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
NA, NA, NA, NA, NA, NA, NA, NA, "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "Blend", "Blend", "Blend", "Blend", "Blend",
"Blend", "Blend", "Blend", "Blend", "Blend", "Blend", "Blend",
"Blend", "Blend", "Blend", "Blend", "Blend", "Blend", "Blend",
"Blend", "Blend", "Blend", "Blend", "Blend", "Blend", "Blend",
NA, NA, NA, NA, NA, NA, NA, NA, "Blend", "Blend", "Blend", "Blend",
"Blend", "Blend", "Blend", "Blend", "Blend", "Blend", "Blend",
"Blend", "Blend", "Blend", "Blend", "Blend", "Blend", "Blend",
"Blend", "Blend", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"Blend", "Blend", "Blend", "Blend", "Blend", "Blend", "Blend",
"Blend", "Blend", "Blend", "Blend", "Blend", "Blend", "Blend",
"Blend", "Blend", "Blend", "Blend", "Blend", "Blend", "Blend",
"Blend", "Blend", "Blend", "Blend", "Blend", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", NA, NA, NA,
NA, NA, NA, NA, NA, "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "Not classified", "Not classified",
"Not classified", "Not classified", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "Blend", "Blend", "Blend",
"Blend", "Blend", "Blend", "Blend", "Blend", "Blend", "Blend",
"Blend", "Blend", "Blend", "Blend", "Blend", "Blend", "Blend",
"Blend", "Blend", "Blend", "Blend", "Blend", "Blend", "Blend",
"Blend", "Blend", "Blend", "Blend", "Blend", "Blend", "Blend",
"Blend", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD", "IBRD",
"IBRD", "IBRD", "IBRD", NA, NA, NA, NA, NA, NA, NA, NA, NA, NA,
NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA",
"IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "IDA", "Blend",
"Blend", "Blend", "Blend", "Blend", "Blend", "Blend", "Blend",
"Blend", "Blend", "Blend", "Blend", "Blend", "Blend", "Blend",
"Blend", "Blend", "Blend", "Blend", "Blend", "Blend", "Blend",
"Blend", "Blend", "Blend", "Blend", "Blend", "Blend", "Blend",
"Blend", "Blend", "Blend", "Blend", "Blend", "Blend")), row.names = c(NA,
-6673L), class = c("tbl_df", "tbl", "data.frame"))
df
temp <- read_delim(clipboard())
New names:Rows: 30 Columns: 48── Column specification ─────────────────────────────────────────────────────────────────────────
Delimiter: "\t"
chr (4): Region, Subregion, Country, Source
dbl (44): 2000...5, 2001...6, 2002...7, 2003...8, 2004...9, 2005...10, 2006...11, 2007...12, ...
ℹ Use `spec()` to retrieve the full column specification for this data.
ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
temp
library(readxl)
df_migrants <- read_excel("data/un/Intentional homicide victims by sex, counts and ra.xls", sheet = 1)
searching models: few numbers
linear regression